This commit is contained in:
Patrick Haßel 2025-06-05 21:05:13 +02:00
parent 4333e35037
commit f421b77700
3 changed files with 7 additions and 1 deletions

View File

@ -48,7 +48,7 @@ void audioStop() {
bool audioPlayInit(const Entry &entry) {
audioStop();
Serial.printf("[%s] %s", entry.type.c_str(), entry.url.c_str());
Serial.printf("[%s] %s\n", entry.type.c_str(), entry.url.c_str());
running = true;
if (entry.type == "ICY" || entry.type == "SNAP") {
@ -182,6 +182,8 @@ bool audioPlay(const Entry &entry) {
}
void audioSetup() {
AudioToolsLogger.setLogLevel(AudioToolsLogLevel::Error);
Serial.println("Initializing board...");
board.begin();
}

View File

@ -7,6 +7,8 @@
void setup() {
delay(500);
Serial.begin(115200);
Serial.println("\n\n\nStartup!");
playerSetup();
playlistClear();
playlistAdd("ICY|http://liveradio.sr.de/sr/sr1/mp3/128/stream.mp3|SR1");

View File

@ -18,6 +18,7 @@ size_t playlistIndex = 0;
std::vector<Entry> playlistEntries;
void playlistClear() {
Serial.println("[PLAYLIST] clear");
playlistTitle = "";
playlistIndex = 0;
playlistEntries.clear();
@ -26,6 +27,7 @@ void playlistClear() {
void playlistAdd(String entry) {
entry.trim();
Serial.println("[PLAYLIST] add: " + entry);
const auto index_type_url = entry.indexOf('|');
if (index_type_url < 0) {