20 lines
398 B
C++
20 lines
398 B
C++
#include <Arduino.h>
|
|
|
|
#include "wifi.h"
|
|
#include "player.h"
|
|
#include "playlist.h"
|
|
|
|
void setup() {
|
|
delay(500);
|
|
Serial.begin(115200);
|
|
playerSetup();
|
|
playlistClear();
|
|
playlistAdd("ICY|http://liveradio.sr.de/sr/sr1/mp3/128/stream.mp3|SR1");
|
|
playlistAdd("ICY|https://stream.rockantenne.de/rockantenne/stream/mp3|Rockantenne Classic Perlen");
|
|
}
|
|
|
|
void loop() {
|
|
wifiLoop();
|
|
playerLoop();
|
|
}
|