2019-08-02 21:48:36 +00:00
|
|
|
#include <Arduino.h>
|
2019-08-04 11:42:07 +00:00
|
|
|
#include <SPI.h>
|
2019-08-06 18:50:11 +00:00
|
|
|
#include <SD.h>
|
2019-11-11 04:32:41 +00:00
|
|
|
#include <WiFi.h>
|
2019-11-16 22:03:13 +00:00
|
|
|
#include <ESPmDNS.h>
|
2019-11-16 23:35:55 +00:00
|
|
|
#include <SPIFFS.h>
|
2019-08-02 21:48:36 +00:00
|
|
|
#include "config.h"
|
|
|
|
#include "controller.h"
|
|
|
|
#include "player.h"
|
2019-08-04 11:42:07 +00:00
|
|
|
#include "spi_master.h"
|
2019-08-12 18:15:00 +00:00
|
|
|
#include "http_server.h"
|
2019-08-14 19:01:01 +00:00
|
|
|
#include "mqtt_client.h"
|
2019-11-14 19:42:02 +00:00
|
|
|
#include "playlist_manager.h"
|
2019-08-02 21:48:36 +00:00
|
|
|
|
|
|
|
Controller* controller;
|
|
|
|
Player* player;
|
2019-11-14 19:42:02 +00:00
|
|
|
PlaylistManager* pm;
|
2019-11-16 22:03:13 +00:00
|
|
|
HTTPServer* http_server;
|
2019-08-14 19:01:01 +00:00
|
|
|
MQTTClient* mqtt_client;
|
2019-11-16 22:03:13 +00:00
|
|
|
|
2019-08-14 19:01:01 +00:00
|
|
|
unsigned long last_mqtt_report = 0;
|
2019-08-02 21:48:36 +00:00
|
|
|
|
|
|
|
void setup() {
|
2019-08-06 18:50:11 +00:00
|
|
|
delay(500);
|
2019-08-04 11:42:07 +00:00
|
|
|
Serial.begin(74880);
|
2019-11-11 04:32:41 +00:00
|
|
|
Serial.println("Starting...");
|
2019-11-10 13:45:33 +00:00
|
|
|
Serial.println("Started.");
|
2019-08-09 04:27:33 +00:00
|
|
|
INFO("Starting.\n");
|
2019-08-13 17:39:03 +00:00
|
|
|
#ifdef VERSION
|
|
|
|
INFO("ESMP3 version %s\n", VERSION);
|
|
|
|
#else
|
|
|
|
INFO("ESMP3, version unknown\n");
|
|
|
|
#endif
|
2019-08-09 04:27:33 +00:00
|
|
|
INFO("Initializing...\n");
|
2019-08-13 04:16:08 +00:00
|
|
|
|
2019-08-09 04:27:33 +00:00
|
|
|
DEBUG("Setting up SPI...\n");
|
2019-08-04 11:42:07 +00:00
|
|
|
SPI.begin();
|
2019-11-10 13:45:33 +00:00
|
|
|
SPI.setHwCs(false);
|
2019-11-14 19:42:02 +00:00
|
|
|
SPIMaster::init();
|
2019-11-11 04:32:41 +00:00
|
|
|
SPIMaster* spi = new SPIMaster();
|
2019-08-09 04:27:33 +00:00
|
|
|
INFO("SPI initialized.\n");
|
2019-08-04 11:42:07 +00:00
|
|
|
|
2019-08-09 04:27:33 +00:00
|
|
|
DEBUG("Setting up SD card...\n");
|
2019-11-10 13:45:33 +00:00
|
|
|
spi->select_sd();
|
2019-11-16 23:35:55 +00:00
|
|
|
if (SD.begin(42, SPI, 25000000)) {
|
2019-08-09 04:27:33 +00:00
|
|
|
INFO("SD card initialized.\n");
|
2019-08-06 18:50:11 +00:00
|
|
|
} else {
|
2019-08-13 04:16:08 +00:00
|
|
|
ERROR("Could not initialize SD card.\n");
|
2019-08-06 18:50:11 +00:00
|
|
|
}
|
2019-11-10 13:45:33 +00:00
|
|
|
spi->select_sd(false);
|
2019-08-13 04:16:08 +00:00
|
|
|
|
2019-11-16 23:35:55 +00:00
|
|
|
DEBUG("Starting SPIFFS...\n");
|
|
|
|
SPIFFS.begin(true);
|
|
|
|
|
2019-11-14 19:42:02 +00:00
|
|
|
DEBUG("Initializing PlaylistManager...\n");
|
|
|
|
pm = new PlaylistManager();
|
|
|
|
DEBUG("done.\n");
|
|
|
|
|
2019-08-12 18:15:00 +00:00
|
|
|
DEBUG("Initializing Player and Controller...\n");
|
2019-11-11 04:32:41 +00:00
|
|
|
player = new Player(spi);
|
2019-11-14 19:42:02 +00:00
|
|
|
controller = new Controller(player, pm);
|
2019-08-12 18:15:00 +00:00
|
|
|
INFO("Player and controller initialized.\n");
|
2019-08-13 04:16:08 +00:00
|
|
|
|
2019-11-10 13:45:33 +00:00
|
|
|
DEBUG("Connecting to wifi \"%s\"...\n", WIFI_SSID);
|
|
|
|
WiFi.mode(WIFI_AP_STA);
|
|
|
|
WiFi.begin(WIFI_SSID, WIFI_PASS);
|
|
|
|
if (WiFi.waitForConnectResult() != WL_CONNECTED) {
|
|
|
|
ERROR("Could not connect to Wifi. Rebooting.");
|
|
|
|
delay(1000);
|
|
|
|
ESP.restart();
|
|
|
|
}
|
2019-11-16 22:03:13 +00:00
|
|
|
INFO("WiFi connected. IP address: %s\n", WiFi.localIP().toString().c_str());
|
2019-11-10 13:45:33 +00:00
|
|
|
|
|
|
|
mqtt_client = new MQTTClient();
|
2019-11-16 22:03:13 +00:00
|
|
|
MDNS.begin("esmp3");
|
2019-11-10 13:45:33 +00:00
|
|
|
|
|
|
|
controller->set_mqtt_client(mqtt_client);
|
|
|
|
|
2019-11-16 22:03:13 +00:00
|
|
|
DEBUG("Setting up HTTP server...\n");
|
|
|
|
http_server = new HTTPServer(player, controller);
|
|
|
|
controller->register_http_server(http_server);
|
2019-08-13 17:39:03 +00:00
|
|
|
|
2019-11-16 22:03:13 +00:00
|
|
|
DEBUG("Starting NTP client...\n");
|
|
|
|
// Taken from https://github.com/esp8266/Arduino/blob/master/cores/esp8266/TZ.h
|
|
|
|
configTzTime("CET-1CEST,M3.5.0,M10.5.0/3", "europe.pool.ntp.org");
|
|
|
|
struct tm time;
|
|
|
|
if (getLocalTime(&time, 10000)) {
|
|
|
|
char buffer[100];
|
|
|
|
strftime(buffer, 100, "%Y-%m-%d %H:%M:%S", &time);
|
|
|
|
DEBUG("Got time: %s\n", buffer);
|
|
|
|
} else {
|
|
|
|
INFO("Could not fetch current time via NTP.\n");
|
|
|
|
}
|
2019-08-11 15:15:22 +00:00
|
|
|
|
2019-08-09 04:27:33 +00:00
|
|
|
INFO("Initialization completed.\n");
|
2019-08-02 21:48:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
2019-08-06 18:50:11 +00:00
|
|
|
bool more_data_needed = player->loop();
|
|
|
|
if (more_data_needed) return;
|
2019-08-02 21:48:36 +00:00
|
|
|
|
2019-08-06 18:50:11 +00:00
|
|
|
controller->loop();
|
2019-08-14 19:01:01 +00:00
|
|
|
mqtt_client->loop();
|
|
|
|
if ((last_mqtt_report + 10000 < millis()) || last_mqtt_report > millis()) {
|
|
|
|
last_mqtt_report = millis();
|
2019-11-16 22:03:13 +00:00
|
|
|
mqtt_client->publish_status(controller->json());
|
2019-08-14 19:01:01 +00:00
|
|
|
}
|
2019-08-02 21:48:36 +00:00
|
|
|
}
|