This commit is contained in:
e2002
2022-03-02 17:07:29 +03:00
parent 37c4f79d94
commit 3933938305
22 changed files with 212 additions and 24 deletions

View File

@@ -27,7 +27,7 @@ class Player: public Audio {
void init();
void loop();
void zeroRequest();
void play(byte stationId);
void play(uint16_t stationId);
void prev();
void next();
void toggle();
@@ -35,6 +35,7 @@ class Player: public Audio {
void setVol(byte volume, bool inside);
byte volToI2S(byte volume);
void stopInfo();
void setOutputPins(bool isPlaying);
};
extern Player player;