mirror of https://github.com/arendst/Tasmota.git
105 lines
2.7 KiB
C++
Executable File
105 lines
2.7 KiB
C++
Executable File
#include <Arduino.h>
|
|
#ifdef ESP32
|
|
#include <WiFi.h>
|
|
#else
|
|
#include <ESP8266WiFi.h>
|
|
#endif
|
|
#include "AudioFileSourceICYStream.h"
|
|
#include "AudioFileSourceSPIRAMBuffer.h"
|
|
#include "AudioGeneratorMP3.h"
|
|
#include "AudioOutputI2SNoDAC.h"
|
|
|
|
// To run, set your ESP8266 build to 160MHz, update the SSID info, and upload.
|
|
|
|
// Enter your WiFi setup here:
|
|
#ifndef STASSID
|
|
#define STASSID "your-ssid"
|
|
#define STAPSK "your-password"
|
|
#endif
|
|
|
|
const char* ssid = STASSID;
|
|
const char* password = STAPSK;
|
|
|
|
// Randomly picked URL
|
|
const char *URL="http://kvbstreams.dyndns.org:8000/wkvi-am";
|
|
|
|
AudioGeneratorMP3 *mp3;
|
|
AudioFileSourceICYStream *file;
|
|
AudioFileSourceSPIRAMBuffer *buff;
|
|
AudioOutputI2SNoDAC *out;
|
|
|
|
// Called when a metadata event occurs (i.e. an ID3 tag, an ICY block, etc.
|
|
void MDCallback(void *cbData, const char *type, bool isUnicode, const char *string)
|
|
{
|
|
const char *ptr = reinterpret_cast<const char *>(cbData);
|
|
(void) isUnicode; // Punt this ball for now
|
|
// Note that the type and string may be in PROGMEM, so copy them to RAM for printf
|
|
Serial.printf_P(PSTR("METADATA(%s) '%s' = '%s'\n"), ptr, type, string);
|
|
Serial.flush();
|
|
}
|
|
|
|
|
|
// Called when there's a warning or error (like a buffer underflow or decode hiccup)
|
|
void StatusCallback(void *cbData, int code, const char *string)
|
|
{
|
|
const char *ptr = reinterpret_cast<const char *>(cbData);
|
|
static uint32_t lastTime = 0;
|
|
static int lastCode = -99999;
|
|
uint32_t now = millis();
|
|
if ((lastCode != code) || (now - lastTime > 1000)) {
|
|
Serial.printf_P(PSTR("STATUS(%s) '%d' = '%s'\n"), ptr, code, string);
|
|
Serial.flush();
|
|
lastTime = now;
|
|
lastCode = code;
|
|
}
|
|
}
|
|
|
|
void setup()
|
|
{
|
|
Serial.begin(115200);
|
|
delay(1000);
|
|
Serial.println("Connecting to WiFi");
|
|
|
|
WiFi.disconnect();
|
|
WiFi.softAPdisconnect(true);
|
|
WiFi.mode(WIFI_STA);
|
|
|
|
WiFi.begin(ssid, password);
|
|
|
|
// Try forever
|
|
while (WiFi.status() != WL_CONNECTED) {
|
|
Serial.println("...Connecting to WiFi");
|
|
delay(1000);
|
|
}
|
|
Serial.println("Connected");
|
|
|
|
audioLogger = &Serial;
|
|
file = new AudioFileSourceICYStream(URL);
|
|
file->RegisterMetadataCB(MDCallback, (void*)"ICY");
|
|
// Initialize 23LC1024 SPI RAM buffer with chip select ion GPIO4 and ram size of 128KByte
|
|
buff = new AudioFileSourceSPIRAMBuffer(file, 4, 128*1024);
|
|
buff->RegisterStatusCB(StatusCallback, (void*)"buffer");
|
|
out = new AudioOutputI2SNoDAC();
|
|
mp3 = new AudioGeneratorMP3();
|
|
mp3->RegisterStatusCB(StatusCallback, (void*)"mp3");
|
|
mp3->begin(buff, out);
|
|
}
|
|
|
|
void loop()
|
|
{
|
|
static int lastms = 0;
|
|
|
|
if (mp3->isRunning()) {
|
|
if (millis()-lastms > 1000) {
|
|
lastms = millis();
|
|
Serial.printf("Running for %d ms...\n", lastms);
|
|
Serial.flush();
|
|
}
|
|
if (!mp3->loop()) mp3->stop();
|
|
} else {
|
|
Serial.printf("MP3 done\n");
|
|
delay(1000);
|
|
}
|
|
}
|
|
|