-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp32-audio-station.ino
297 lines (260 loc) · 7.29 KB
/
esp32-audio-station.ino
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
#include "parameters.h"
#include "stringUtils.h"
#include "IRremote.hpp"
#include <Preferences.h>
#include "display.h"
#include <VS1053.h>
// Player with web radio stream handling
#include <ESP32_VS1053_Stream_raw.h>
// bluetooth
#include "BluetoothA2DPSink.h"
#include <cbuf.h>
#include "bluetoothsink.h"
#include <WiFi.h>
#include <HTTPClient.h>
#include <Arduino_JSON.h>
#include "WebRadios.h"
#include "network.h"
Preferences preferences;
ESP32_VS1053_Stream_raw stream;
BluetoothA2DPSink a2dp_sink;
WebRadios webRadios;
unsigned long lastAction = millis();
unsigned short radioIdx = 0;
bool hasRadioIdxChanged = false;
bool radioIdxSaved = true;
unsigned int volume = VOLUME_MAX;
bool volumeSaved = true;
bool mute = false;
bool eof = false;
bool paused = false;
bool bluetoothMode = true;
boolean fetchWebRadiosData() {
boolean success = false;
while(!success) {
delay(RETRIES_DELAY);
success = getWebRadiosJSON(&webRadios);
}
return success;
}
void setup() {
titleLabel[0] = songLabel[0] ='\0';
circBuffer.flush();
IrReceiver.begin(IR_RECEIVE_PIN, ENABLE_LED_FEEDBACK);
preferences.begin("webradio", false);
radioIdx = preferences.getInt("radioIdx", radioIdx);
volume = preferences.getInt("volume", volume);
bluetoothMode = preferences.getBool("bluetoothMode", bluetoothMode);
Serial.begin(115200);
Serial.println(bluetoothMode ? BLUETOOTH_NAME : "Web Radio");
setupScreen();
displayText(bluetoothMode ? BLUETOOTH_NAME : "Web Radio");
delay(3000); // Wait for VS1053 and PAM8403 to power up
SPI.setHwCs(true);
SPI.begin(SPI_CLK_PIN, SPI_MISO_PIN, SPI_MOSI_PIN); /* start SPI before starting decoder */
if (!stream.startDecoder(VS1053_CS, VS1053_DCS, VS1053_DREQ) || !stream.isChipConnected()) {
Serial.println("Decoder not running");
while (1) delay(1000);
}
stream.setVolume(volume);
if (bluetoothMode) {
copyString(BLUETOOTH_NAME, titleLabel);
a2dp_sink.set_stream_reader(read_data_stream, false);
a2dp_sink.set_avrc_metadata_callback(avrc_metadata_callback);
a2dp_sink.start(BLUETOOTH_NAME);
delay(100);
circBuffer.write((char *)bt_wav_header, 44);
delay(100);
} else {
displayText("Radio > Wifi");
if (!connectToWifi()) {
displayError("Wifi error");
delay(10000);
toggleSource();
} else {
displayText("Radio > list");
if (fetchWebRadiosData()) {
radioIdx = radioIdx < webRadios.max ? radioIdx : 0;
startRadio();
} else {
displayError("Radio : error");
delay(10000);
toggleSource();
}
}
}
}
void loop() {
if (bluetoothMode) {
handle_stream(&stream);
if (f_bluetoothsink_metadata_received) {
refreshDisplay();
f_bluetoothsink_metadata_received = false;
}
} else {
if (stream.isRunning()) {
stream.loop();
delay(5);
}
changeRadio();
}
savePreferences();
handleIRCommands();
}
void handleIRCommands() {
if (hasTimePassed(IR_DELAY) && IrReceiver.decode()) {
lastAction = millis();
uint16_t command = IrReceiver.decodedIRData.command;
Serial.printf("IRcommand: %02x\n", command);
switch (command) {
case IR_PAUSE:
if (bluetoothMode) {
if (paused) {
a2dp_sink.play();
} else {
a2dp_sink.pause();
}
paused = !paused;
}
break;
case IR_NEXT:
if (bluetoothMode) {
a2dp_sink.next();
} else {
changeRadioIndex(true);
}
break;
case IR_PREVIOUS:
if (bluetoothMode) {
a2dp_sink.previous();
} else {
changeRadioIndex(false);
}
break;
case IR_VOL_UP:
changeVolume(true);
break;
case IR_VOL_DOWN:
changeVolume(false);
break;
case IR_VOL_MUTE:
toggleMute();
break;
case IR_VOL_SOURCE:
toggleSource();
break;
default:
Serial.println("IRCommand: unknown");
}
IrReceiver.resume();
}
}
void startRadio() {
Serial.printf("StartRadio %s - %s\n", webRadios.url[radioIdx], webRadios.name[radioIdx]);
copyString(webRadios.name[radioIdx], titleLabel);
copyString("", songLabel);
eof = false;
refreshDisplay();
stream.connecttohost(webRadios.url[radioIdx]);
Serial.printf("codec: %s - bitrate: %lu kbps\n", stream.currentCodec(), stream.bitrate());
}
void restartRadio() {
Serial.printf("RestartRadio %s - %s\n", webRadios.url[radioIdx], webRadios.name[radioIdx]);
eof = false;
stream.connecttohost(webRadios.url[radioIdx]);
}
void changeRadioIndex(bool next) {
if (stream.isRunning()) stream.stopSong();
if (next) radioIdx = radioIdx < webRadios.max - 1 ? radioIdx + 1 : 0;
else radioIdx = radioIdx > 0 ? radioIdx - 1 : webRadios.max - 1;
copyString(webRadios.name[radioIdx], titleLabel);
copyString("", songLabel);
refreshDisplay();
hasRadioIdxChanged = true;
}
void toggleMute() {
mute = stream.getVolume() == volume;
unsigned int v = mute ? 0 : volume;
stream.setVolume(v);
refreshDisplay();
}
void toggleSource() {
if (bluetoothMode) {
a2dp_sink.stop();
a2dp_sink.disconnect();
a2dp_sink.end();
} else {
stream.stopSong();
}
if (!volumeSaved) {
Serial.printf("!!! Save volume %i\n", volume);
preferences.putInt("volume", volume);
}
preferences.putBool("bluetoothMode", !bluetoothMode);
delay(250);
ESP.restart();
}
void changeVolume(bool increase) {
if (!mute) {
volume = stream.getVolume();
if (increase && volume <= (VOLUME_MAX - VOLUME_STEP)) volume += VOLUME_STEP;
else if (!increase && volume >= VOLUME_STEP) volume -= VOLUME_STEP;
volumeSaved = false;
stream.setVolume(volume);
refreshDisplay();
}
}
void changeRadio () {
if (hasRadioIdxChanged && hasTimePassed(CHANGE_RADIO_DELAY)) {
hasRadioIdxChanged = false;
radioIdxSaved = false;
startRadio();
}
}
void audio_showstation(const char* station) {
Serial.printf("showstation: %s\n", station);
char* aac = strstr(station, ".aac");
char* mp3 = strstr(station, ".mp3");
if (aac == NULL && mp3 == NULL) {
copyString(station, titleLabel);
refreshDisplay();
}
}
void audio_showstreamtitle(const char* song) {
Serial.printf("streamtitle: %s\n", song);
copyString(song, songLabel);
refreshDisplay();
}
void audio_eof_stream(const char* error) {
Serial.printf("End of stream: %s\n", error);
eof = true;
refreshDisplay();
delay(1000);
restartRadio();
}
void refreshDisplay() {
displayData(titleLabel, songLabel, volume, mute, eof);
}
bool hasTimePassed (unsigned long time) {
return (millis() - lastAction) > time;
}
void savePreferences() {
if (hasTimePassed(SAVE_DELAY)) {
if (stream.isRunning() && !radioIdxSaved) {
Serial.println("should save radio index");
radioIdxSaved = true;
if (!preferences.isKey("radioIdx") || preferences.getInt("radioIdx", radioIdx) != radioIdx) {
Serial.printf("!!! Save radio index %i\n", radioIdx);
preferences.putInt("radioIdx", radioIdx);
}
}
if (!volumeSaved) {
Serial.println("should save volume");
volumeSaved = true;
if (!preferences.isKey("volume") || preferences.getInt("volume", volume) != volume) {
Serial.printf("!!! Save volume %i\n", volume);
preferences.putInt("volume", volume);
}
}
}
}