2016-12-31 00:38:51 +01:00
|
|
|
/*
|
|
|
|
* Setup code
|
|
|
|
*/
|
|
|
|
|
2016-11-19 19:39:17 +01:00
|
|
|
void wledInit()
|
2019-08-17 12:27:06 +02:00
|
|
|
{
|
2018-04-15 15:27:54 +02:00
|
|
|
EEPROM.begin(EEPSIZE);
|
2019-08-17 12:27:06 +02:00
|
|
|
ledCount = EEPROM.read(229) + ((EEPROM.read(398) << 8) & 0xFF00);
|
2019-10-26 00:00:44 +02:00
|
|
|
if (ledCount > MAX_LEDS || ledCount == 0) ledCount = 30;
|
2019-11-12 19:33:34 +01:00
|
|
|
#ifdef ESP8266
|
2019-02-20 23:44:34 +01:00
|
|
|
#if LEDPIN == 3
|
2019-10-26 00:00:44 +02:00
|
|
|
if (ledCount > MAX_LEDS_DMA) ledCount = MAX_LEDS_DMA; //DMA method uses too much ram
|
2019-02-20 23:44:34 +01:00
|
|
|
#endif
|
2018-04-15 15:27:54 +02:00
|
|
|
#endif
|
2016-11-19 19:39:17 +01:00
|
|
|
Serial.begin(115200);
|
2018-04-11 23:50:35 +02:00
|
|
|
Serial.setTimeout(50);
|
2019-03-07 16:35:02 +01:00
|
|
|
DEBUG_PRINTLN();
|
|
|
|
DEBUG_PRINT("---WLED "); DEBUG_PRINT(versionString); DEBUG_PRINT(" "); DEBUG_PRINT(VERSION); DEBUG_PRINTLN(" INIT---");
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
DEBUG_PRINT("esp32 "); DEBUG_PRINTLN(ESP.getSdkVersion());
|
|
|
|
#else
|
|
|
|
DEBUG_PRINT("esp8266 "); DEBUG_PRINTLN(ESP.getCoreVersion());
|
|
|
|
#endif
|
|
|
|
int heapPreAlloc = ESP.getFreeHeap();
|
|
|
|
DEBUG_PRINT("heap ");
|
|
|
|
DEBUG_PRINTLN(ESP.getFreeHeap());
|
2019-08-17 12:27:06 +02:00
|
|
|
|
2019-02-11 23:49:04 +01:00
|
|
|
strip.init(EEPROM.read(372),ledCount,EEPROM.read(2204)); //init LEDs quickly
|
2019-10-29 01:19:04 +01:00
|
|
|
strip.setBrightness(0);
|
2019-03-07 16:35:02 +01:00
|
|
|
|
|
|
|
DEBUG_PRINT("LEDs inited. heap usage ~");
|
|
|
|
DEBUG_PRINTLN(heapPreAlloc - ESP.getFreeHeap());
|
|
|
|
|
2019-03-16 02:09:37 +01:00
|
|
|
#ifndef WLED_DISABLE_FILESYSTEM
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
SPIFFS.begin(true);
|
|
|
|
#endif
|
|
|
|
SPIFFS.begin();
|
2017-05-08 21:00:06 +02:00
|
|
|
#endif
|
2019-08-17 12:27:06 +02:00
|
|
|
|
2018-03-15 12:04:14 +01:00
|
|
|
DEBUG_PRINTLN("Load EEPROM");
|
2017-12-11 23:59:12 +01:00
|
|
|
loadSettingsFromEEPROM(true);
|
2019-02-11 23:49:04 +01:00
|
|
|
beginStrip();
|
2019-10-20 17:38:25 +02:00
|
|
|
userSetup();
|
2018-09-08 20:26:04 +02:00
|
|
|
if (strcmp(clientSSID,"Your_Network") == 0) showWelcomePage = true;
|
2019-01-31 23:42:48 +01:00
|
|
|
WiFi.persistent(false);
|
2018-02-28 00:27:10 +01:00
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
if (macroBoot>0) applyMacro(macroBoot);
|
|
|
|
Serial.println("Ada");
|
2016-11-27 22:37:51 +01:00
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
//generate module IDs
|
|
|
|
escapedMac = WiFi.macAddress();
|
|
|
|
escapedMac.replace(":", "");
|
|
|
|
escapedMac.toLowerCase();
|
2019-02-05 19:40:24 +01:00
|
|
|
if (strcmp(cmDNS,"x") == 0) //fill in unique mdns default
|
|
|
|
{
|
|
|
|
strcpy(cmDNS, "wled-");
|
2019-08-18 18:14:17 +02:00
|
|
|
sprintf(cmDNS+5, "%*s", 6, escapedMac.c_str()+6);
|
2019-02-05 19:40:24 +01:00
|
|
|
}
|
2018-10-04 22:38:39 +02:00
|
|
|
if (mqttDeviceTopic[0] == 0)
|
|
|
|
{
|
|
|
|
strcpy(mqttDeviceTopic, "wled/");
|
2019-08-18 18:14:17 +02:00
|
|
|
sprintf(mqttDeviceTopic+5, "%*s", 6, escapedMac.c_str()+6);
|
2018-10-04 22:38:39 +02:00
|
|
|
}
|
2019-08-17 12:27:06 +02:00
|
|
|
if (mqttClientID[0] == 0)
|
|
|
|
{
|
|
|
|
strcpy(mqttClientID, "WLED-");
|
|
|
|
sprintf(mqttClientID+5, "%*s", 6, escapedMac.c_str()+6);
|
|
|
|
}
|
|
|
|
|
2019-02-11 23:49:04 +01:00
|
|
|
strip.service();
|
2018-02-20 22:29:48 +01:00
|
|
|
|
2019-10-20 17:38:25 +02:00
|
|
|
#ifndef WLED_DISABLE_OTA
|
2018-10-04 18:17:01 +02:00
|
|
|
if (aOtaEnabled)
|
|
|
|
{
|
|
|
|
ArduinoOTA.onStart([]() {
|
2019-10-20 17:38:25 +02:00
|
|
|
#ifdef ESP8266
|
2018-10-04 18:17:01 +02:00
|
|
|
wifi_set_sleep_type(NONE_SLEEP_T);
|
|
|
|
#endif
|
|
|
|
DEBUG_PRINTLN("Start ArduinoOTA");
|
|
|
|
});
|
|
|
|
if (strlen(cmDNS) > 0) ArduinoOTA.setHostname(cmDNS);
|
|
|
|
}
|
2019-10-20 17:38:25 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//HTTP server page init
|
|
|
|
initServer();
|
2018-10-04 18:17:01 +02:00
|
|
|
|
2019-10-20 17:38:25 +02:00
|
|
|
strip.service();
|
2018-05-10 19:55:58 +02:00
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
initConnection();
|
2018-03-15 12:04:14 +01:00
|
|
|
}
|
2018-02-25 14:46:11 +01:00
|
|
|
|
2018-11-24 11:52:23 +01:00
|
|
|
|
2019-02-11 23:49:04 +01:00
|
|
|
void beginStrip()
|
2018-03-15 12:04:14 +01:00
|
|
|
{
|
|
|
|
// Initialize NeoPixel Strip and button
|
2018-01-14 00:53:16 +01:00
|
|
|
|
2019-05-01 03:09:08 +02:00
|
|
|
#ifdef BTNPIN
|
2018-11-18 00:31:45 +01:00
|
|
|
pinMode(BTNPIN, INPUT_PULLUP);
|
2019-05-01 03:09:08 +02:00
|
|
|
#endif
|
2018-03-06 23:47:08 +01:00
|
|
|
|
2017-12-12 14:52:28 +01:00
|
|
|
if (bootPreset>0) applyPreset(bootPreset, turnOnAtBoot, true, true);
|
2016-11-19 19:39:17 +01:00
|
|
|
colorUpdated(0);
|
2018-11-09 17:00:36 +01:00
|
|
|
|
2019-03-13 11:13:03 +01:00
|
|
|
//init relay pin
|
|
|
|
#if RLYPIN >= 0
|
|
|
|
pinMode(RLYPIN, OUTPUT);
|
|
|
|
#if RLYMDE
|
|
|
|
digitalWrite(RLYPIN, bri);
|
|
|
|
#else
|
|
|
|
digitalWrite(RLYPIN, !bri);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2018-11-09 17:00:36 +01:00
|
|
|
//disable button if it is "pressed" unintentionally
|
2019-05-01 03:09:08 +02:00
|
|
|
#ifdef BTNPIN
|
2018-11-18 00:31:45 +01:00
|
|
|
if(digitalRead(BTNPIN) == LOW) buttonEnabled = false;
|
2019-05-01 03:09:08 +02:00
|
|
|
#else
|
|
|
|
buttonEnabled = false;
|
|
|
|
#endif
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
|
|
|
|
2018-11-24 11:52:23 +01:00
|
|
|
|
2019-10-18 12:19:52 +02:00
|
|
|
void initAP(bool resetAP=false){
|
2019-10-25 00:14:58 +02:00
|
|
|
if (apBehavior == 3 && !resetAP) return;
|
|
|
|
|
|
|
|
if (!apSSID[0] || resetAP) strcpy(apSSID, "WLED-AP");
|
2019-10-18 23:47:11 +02:00
|
|
|
if (resetAP) strcpy(apPass,"wled1234");
|
|
|
|
DEBUG_PRINT("Opening access point ");
|
|
|
|
DEBUG_PRINTLN(apSSID);
|
2019-09-05 22:45:59 +02:00
|
|
|
WiFi.softAPConfig(IPAddress(4, 3, 2, 1), IPAddress(4, 3, 2, 1), IPAddress(255,255,255,0));
|
2018-07-21 23:21:07 +02:00
|
|
|
WiFi.softAP(apSSID, apPass, apChannel, apHide);
|
2019-10-18 23:47:11 +02:00
|
|
|
|
|
|
|
if (!apActive) //start captive portal if AP active
|
|
|
|
{
|
2019-10-20 17:38:25 +02:00
|
|
|
DEBUG_PRINTLN("Init AP interfaces");
|
|
|
|
server.begin();
|
|
|
|
if (udpPort > 0 && udpPort != ntpLocalPort)
|
|
|
|
{
|
|
|
|
udpConnected = notifierUdp.begin(udpPort);
|
|
|
|
if (udpConnected && udpRgbPort != udpPort) udpRgbConnected = rgbUdp.begin(udpRgbPort);
|
|
|
|
}
|
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
dnsServer.setErrorReplyCode(DNSReplyCode::NoError);
|
|
|
|
dnsServer.start(53, "*", WiFi.softAPIP());
|
|
|
|
}
|
|
|
|
apActive = true;
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
void initConnection()
|
2016-11-19 19:39:17 +01:00
|
|
|
{
|
2018-04-01 00:08:50 +02:00
|
|
|
WiFi.disconnect(); //close old connections
|
|
|
|
|
2019-11-21 15:20:15 +01:00
|
|
|
if (staticIP[0] != 0 && staticGateway[0] != 0)
|
2018-04-01 00:08:50 +02:00
|
|
|
{
|
2019-03-09 21:41:23 +01:00
|
|
|
WiFi.config(staticIP, staticGateway, staticSubnet, IPAddress(8,8,8,8));
|
2018-04-01 00:08:50 +02:00
|
|
|
} else
|
|
|
|
{
|
|
|
|
WiFi.config(0U, 0U, 0U);
|
|
|
|
}
|
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
lastReconnectAttempt = millis();
|
|
|
|
|
2019-10-20 17:38:25 +02:00
|
|
|
if (!WLED_WIFI_CONFIGURED)
|
|
|
|
{
|
|
|
|
DEBUG_PRINT("No connection configured. ");
|
|
|
|
if (!apActive) initAP(); //instantly go to ap mode
|
|
|
|
return;
|
|
|
|
} else if (!apActive) {
|
2019-10-25 00:14:58 +02:00
|
|
|
if (apBehavior == 2)
|
2019-10-20 12:48:29 +02:00
|
|
|
{
|
|
|
|
initAP();
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
DEBUG_PRINTLN("Access point disabled.");
|
|
|
|
WiFi.softAPdisconnect(true);
|
|
|
|
}
|
2018-04-01 00:08:50 +02:00
|
|
|
}
|
2019-10-18 23:47:11 +02:00
|
|
|
showWelcomePage = false;
|
|
|
|
|
|
|
|
DEBUG_PRINT("Connecting to ");
|
|
|
|
DEBUG_PRINT(clientSSID);
|
|
|
|
DEBUG_PRINTLN("...");
|
2019-10-18 14:06:07 +02:00
|
|
|
|
2019-10-20 17:38:25 +02:00
|
|
|
#ifdef ESP8266
|
2018-11-09 17:00:36 +01:00
|
|
|
WiFi.hostname(serverDescription);
|
2018-06-24 01:20:15 +02:00
|
|
|
#endif
|
2018-11-09 17:00:36 +01:00
|
|
|
WiFi.begin(clientSSID, clientPass);
|
2018-06-24 01:20:15 +02:00
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
2018-11-09 17:00:36 +01:00
|
|
|
WiFi.setHostname(serverDescription);
|
2018-06-24 01:20:15 +02:00
|
|
|
#endif
|
2019-10-18 23:47:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void initInterfaces() {
|
2019-10-20 17:38:25 +02:00
|
|
|
DEBUG_PRINTLN("Init STA interfaces");
|
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
if (hueIP[0] == 0)
|
2018-03-15 12:04:14 +01:00
|
|
|
{
|
2019-10-18 23:47:11 +02:00
|
|
|
hueIP[0] = WiFi.localIP()[0];
|
|
|
|
hueIP[1] = WiFi.localIP()[1];
|
|
|
|
hueIP[2] = WiFi.localIP()[2];
|
|
|
|
}
|
|
|
|
|
|
|
|
//init Alexa hue emulation
|
|
|
|
if (alexaEnabled) alexaInit();
|
|
|
|
|
|
|
|
#ifndef WLED_DISABLE_OTA
|
2019-10-25 15:32:09 +02:00
|
|
|
if (aOtaEnabled) ArduinoOTA.begin();
|
2019-10-18 23:47:11 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
strip.service();
|
|
|
|
// Set up mDNS responder:
|
|
|
|
if (strlen(cmDNS) > 0)
|
|
|
|
{
|
2019-10-25 15:32:09 +02:00
|
|
|
if (!aOtaEnabled) MDNS.begin(cmDNS);
|
|
|
|
|
|
|
|
DEBUG_PRINTLN("mDNS started");
|
|
|
|
MDNS.addService("http", "tcp", 80);
|
|
|
|
MDNS.addService("wled", "tcp", 80);
|
2019-10-29 01:30:07 +01:00
|
|
|
MDNS.addServiceTxt("wled", "tcp", "mac", escapedMac.c_str());
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
2019-10-25 00:14:58 +02:00
|
|
|
server.begin();
|
2019-10-18 23:47:11 +02:00
|
|
|
|
2019-10-25 00:14:58 +02:00
|
|
|
if (udpPort > 0 && udpPort != ntpLocalPort)
|
|
|
|
{
|
|
|
|
udpConnected = notifierUdp.begin(udpPort);
|
|
|
|
if (udpConnected && udpRgbPort != udpPort) udpRgbConnected = rgbUdp.begin(udpRgbPort);
|
|
|
|
}
|
2019-10-29 01:19:04 +01:00
|
|
|
if (ntpEnabled) ntpConnected = ntpUdp.begin(ntpLocalPort);
|
2019-10-20 17:38:25 +02:00
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
initBlynk(blynkApiKey);
|
2019-11-18 20:43:27 +01:00
|
|
|
Serial.println(e131.begin((e131Multicast) ? E131_MULTICAST : E131_UNICAST , e131Universe, E131_MAX_UNIVERSE_COUNT));
|
2019-10-18 23:47:11 +02:00
|
|
|
reconnectHue();
|
2019-10-20 17:38:25 +02:00
|
|
|
initMqtt();
|
2019-10-18 23:47:11 +02:00
|
|
|
interfacesInited = true;
|
2019-10-26 00:00:44 +02:00
|
|
|
wasConnected = true;
|
2016-11-19 19:39:17 +01:00
|
|
|
}
|
|
|
|
|
2019-10-18 23:47:11 +02:00
|
|
|
byte stacO = 0;
|
2018-01-27 23:28:20 +01:00
|
|
|
|
2019-10-18 14:06:07 +02:00
|
|
|
void handleConnection() {
|
2019-10-25 00:14:58 +02:00
|
|
|
//TODO: reconnect if heap <8000
|
2019-10-20 17:38:25 +02:00
|
|
|
byte stac = 0;
|
|
|
|
#ifdef ESP8266
|
|
|
|
stac = wifi_softap_get_station_num();
|
2019-10-25 00:14:58 +02:00
|
|
|
#else
|
|
|
|
wifi_sta_list_t stationList;
|
|
|
|
esp_wifi_ap_get_sta_list(&stationList);
|
|
|
|
stac = stationList.num;
|
2019-10-20 17:38:25 +02:00
|
|
|
#endif
|
2019-10-18 23:47:11 +02:00
|
|
|
if (stac != stacO)
|
|
|
|
{
|
|
|
|
stacO = stac;
|
|
|
|
DEBUG_PRINT("Connected AP clients: ");
|
|
|
|
DEBUG_PRINTLN(stac);
|
|
|
|
if (!WLED_CONNECTED && WLED_WIFI_CONFIGURED) { //trying to connect, but not connected
|
|
|
|
if (stac) WiFi.disconnect(); //disable search so that AP can work
|
|
|
|
else initConnection(); //restart search
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (forceReconnect) {
|
|
|
|
DEBUG_PRINTLN("Forcing reconnect.");
|
|
|
|
initConnection();
|
|
|
|
interfacesInited = false;
|
|
|
|
forceReconnect = false;
|
2019-10-26 00:00:44 +02:00
|
|
|
wasConnected = false;
|
2019-10-18 23:47:11 +02:00
|
|
|
return;
|
|
|
|
}
|
2019-10-18 14:06:07 +02:00
|
|
|
if (!WLED_CONNECTED) {
|
2019-10-18 23:47:11 +02:00
|
|
|
if (interfacesInited) {
|
|
|
|
DEBUG_PRINTLN("Disconnected!");
|
|
|
|
interfacesInited = false;
|
|
|
|
initConnection();
|
|
|
|
}
|
|
|
|
if (millis() - lastReconnectAttempt > 300000 && WLED_WIFI_CONFIGURED) initConnection();
|
2019-10-26 00:00:44 +02:00
|
|
|
if (!apActive && millis() - lastReconnectAttempt > 12000 && (!wasConnected || apBehavior == 1)) initAP();
|
2019-10-18 23:47:11 +02:00
|
|
|
} else if (!interfacesInited) { //newly connected
|
|
|
|
DEBUG_PRINTLN("");
|
|
|
|
DEBUG_PRINT("Connected! IP address: ");
|
|
|
|
DEBUG_PRINTLN(WiFi.localIP());
|
|
|
|
initInterfaces();
|
2019-10-20 17:38:25 +02:00
|
|
|
userConnected();
|
2019-10-18 23:47:11 +02:00
|
|
|
|
|
|
|
//shut down AP
|
2019-10-25 00:14:58 +02:00
|
|
|
if (apBehavior != 2 && apActive)
|
2019-10-18 23:47:11 +02:00
|
|
|
{
|
|
|
|
dnsServer.stop();
|
|
|
|
WiFi.softAPdisconnect(true);
|
|
|
|
apActive = false;
|
2019-10-25 00:14:58 +02:00
|
|
|
DEBUG_PRINTLN("Access point disabled.");
|
2019-10-18 23:47:11 +02:00
|
|
|
}
|
2019-10-18 14:06:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-29 02:21:23 +01:00
|
|
|
//by https://github.com/tzapu/WiFiManager/blob/master/WiFiManager.cpp
|
|
|
|
int getSignalQuality(int rssi)
|
|
|
|
{
|
|
|
|
int quality = 0;
|
|
|
|
|
|
|
|
if (rssi <= -100) {
|
|
|
|
quality = 0;
|
|
|
|
} else if (rssi >= -50) {
|
|
|
|
quality = 100;
|
|
|
|
} else {
|
|
|
|
quality = 2 * (rssi + 100);
|
|
|
|
}
|
|
|
|
return quality;
|
|
|
|
}
|
2019-10-18 14:06:07 +02:00
|
|
|
|
2018-05-22 21:11:19 +02:00
|
|
|
bool checkClientIsMobile(String useragent)
|
|
|
|
{
|
|
|
|
//to save complexity this function is not comprehensive
|
|
|
|
if (useragent.indexOf("Android") >= 0) return true;
|
|
|
|
if (useragent.indexOf("iPhone") >= 0) return true;
|
|
|
|
if (useragent.indexOf("iPod") >= 0) return true;
|
2019-09-12 12:40:06 +02:00
|
|
|
if (useragent.indexOf("iPad") >= 0) return true;
|
2018-05-22 21:11:19 +02:00
|
|
|
return false;
|
|
|
|
}
|