2020-04-10 12:30:08 +02:00
|
|
|
#define WLED_DEFINE_GLOBAL_VARS //only in one source file, wled.cpp!
|
|
|
|
#include "wled.h"
|
|
|
|
#include <Arduino.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Main WLED class implementation. Mostly initialization and connection logic
|
|
|
|
*/
|
|
|
|
|
|
|
|
WLED::WLED()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// turns all LEDs off and restarts ESP
|
|
|
|
void WLED::reset()
|
|
|
|
{
|
|
|
|
briT = 0;
|
2020-06-26 17:28:35 +02:00
|
|
|
#ifdef WLED_ENABLE_WEBSOCKETS
|
|
|
|
ws.closeAll(1012);
|
|
|
|
#endif
|
2020-04-10 12:30:08 +02:00
|
|
|
long dly = millis();
|
2020-06-26 17:28:35 +02:00
|
|
|
while (millis() - dly < 450) {
|
2020-04-10 12:30:08 +02:00
|
|
|
yield(); // enough time to send response to client
|
|
|
|
}
|
|
|
|
setAllLeds();
|
|
|
|
DEBUG_PRINTLN("MODULE RESET");
|
|
|
|
ESP.restart();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool oappendi(int i)
|
|
|
|
{
|
|
|
|
char s[11];
|
2020-10-02 12:30:17 +02:00
|
|
|
sprintf(s, "%d", i);
|
2020-04-10 12:30:08 +02:00
|
|
|
return oappend(s);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool oappend(const char* txt)
|
|
|
|
{
|
|
|
|
uint16_t len = strlen(txt);
|
|
|
|
if (olen + len >= OMAX)
|
|
|
|
return false; // buffer full
|
|
|
|
strcpy(obuf + olen, txt);
|
|
|
|
olen += len;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2020-11-13 18:25:13 +01:00
|
|
|
void prepareHostname(char* hostname)
|
|
|
|
{
|
|
|
|
const char *pC = serverDescription;
|
|
|
|
uint8_t pos = 5;
|
|
|
|
|
|
|
|
while (*pC && pos < 24) { // while !null and not over length
|
|
|
|
if (isalnum(*pC)) { // if the current char is alpha-numeric append it to the hostname
|
|
|
|
hostname[pos] = *pC;
|
|
|
|
pos++;
|
|
|
|
} else if (*pC == ' ' || *pC == '_' || *pC == '-' || *pC == '+' || *pC == '!' || *pC == '?' || *pC == '*') {
|
|
|
|
hostname[pos] = '-';
|
|
|
|
pos++;
|
|
|
|
}
|
|
|
|
// else do nothing - no leading hyphens and do not include hyphens for all other characters.
|
|
|
|
pC++;
|
|
|
|
}
|
|
|
|
// if the hostname is left blank, use the mac address/default mdns name
|
|
|
|
if (pos < 6) {
|
|
|
|
sprintf(hostname + 5, "%*s", 6, escapedMac.c_str() + 6);
|
|
|
|
} else { //last character must not be hyphen
|
|
|
|
while (pos > 0 && hostname[pos -1] == '-') {
|
|
|
|
hostname[pos -1] = 0;
|
|
|
|
pos--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//handle Ethernet connection event
|
|
|
|
void WiFiEvent(WiFiEvent_t event)
|
|
|
|
{
|
|
|
|
char hostname[25] = "wled-";
|
|
|
|
|
|
|
|
switch (event) {
|
|
|
|
#if defined(ARDUINO_ARCH_ESP32) && defined(WLED_USE_ETHERNET)
|
|
|
|
case SYSTEM_EVENT_ETH_START:
|
|
|
|
DEBUG_PRINT("ETH Started");
|
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_ETH_CONNECTED:
|
|
|
|
DEBUG_PRINT("ETH Connected");
|
|
|
|
if (!apActive) {
|
|
|
|
WiFi.disconnect(true);
|
|
|
|
}
|
|
|
|
if (staticIP != (uint32_t)0x00000000 && staticGateway != (uint32_t)0x00000000) {
|
|
|
|
ETH.config(staticIP, staticGateway, staticSubnet, IPAddress(8, 8, 8, 8));
|
|
|
|
} else {
|
|
|
|
ETH.config(INADDR_NONE, INADDR_NONE, INADDR_NONE);
|
|
|
|
}
|
|
|
|
// convert the "serverDescription" into a valid DNS hostname (alphanumeric)
|
|
|
|
prepareHostname(hostname);
|
|
|
|
ETH.setHostname(hostname);
|
|
|
|
showWelcomePage = false;
|
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_ETH_DISCONNECTED:
|
|
|
|
DEBUG_PRINT("ETH Disconnected");
|
|
|
|
forceReconnect = true;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
void WLED::loop()
|
|
|
|
{
|
|
|
|
handleIR(); // 2nd call to function needed for ESP32 to return valid results -- should be good for ESP8266, too
|
|
|
|
handleConnection();
|
|
|
|
handleSerial();
|
|
|
|
handleNotifications();
|
|
|
|
handleTransitions();
|
|
|
|
#ifdef WLED_ENABLE_DMX
|
|
|
|
handleDMX();
|
|
|
|
#endif
|
|
|
|
userLoop();
|
2020-05-28 02:20:02 +02:00
|
|
|
usermods.loop();
|
2020-04-10 12:30:08 +02:00
|
|
|
|
|
|
|
yield();
|
|
|
|
handleIO();
|
|
|
|
handleIR();
|
|
|
|
handleNetworkTime();
|
|
|
|
handleAlexa();
|
|
|
|
|
|
|
|
handleOverlays();
|
|
|
|
yield();
|
|
|
|
#ifdef WLED_USE_ANALOG_LEDS
|
|
|
|
strip.setRgbwPwm();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (doReboot)
|
|
|
|
reset();
|
2020-10-13 01:39:34 +02:00
|
|
|
if (doCloseFile) {
|
|
|
|
closeFile();
|
|
|
|
yield();
|
|
|
|
}
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-04-30 01:52:36 +02:00
|
|
|
if (!realtimeMode || realtimeOverride) // block stuff if WARLS/Adalight is enabled
|
2020-04-10 12:30:08 +02:00
|
|
|
{
|
|
|
|
if (apActive)
|
|
|
|
dnsServer.processNextRequest();
|
|
|
|
#ifndef WLED_DISABLE_OTA
|
|
|
|
if (WLED_CONNECTED && aOtaEnabled)
|
|
|
|
ArduinoOTA.handle();
|
|
|
|
#endif
|
|
|
|
handleNightlight();
|
2020-11-11 23:48:14 +01:00
|
|
|
handlePlaylist();
|
2020-04-10 12:30:08 +02:00
|
|
|
yield();
|
|
|
|
|
|
|
|
handleHue();
|
|
|
|
handleBlynk();
|
|
|
|
|
2020-10-08 00:52:15 +02:00
|
|
|
/*if (presetToApply) {
|
|
|
|
applyPreset(presetToApply);
|
2020-05-05 09:01:09 +02:00
|
|
|
presetToApply = 0;
|
2020-10-08 00:52:15 +02:00
|
|
|
}*/
|
2020-05-05 09:01:09 +02:00
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
yield();
|
2020-09-20 16:00:24 +02:00
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
if (!offMode)
|
|
|
|
strip.service();
|
2020-09-20 16:00:24 +02:00
|
|
|
#ifdef ESP8266
|
|
|
|
else if (!noWifiSleep)
|
|
|
|
delay(1); //required to make sure ESP enters modem sleep (see #1184)
|
|
|
|
#endif
|
2020-04-10 12:30:08 +02:00
|
|
|
}
|
|
|
|
yield();
|
|
|
|
#ifdef ESP8266
|
|
|
|
MDNS.update();
|
|
|
|
#endif
|
2020-04-30 01:52:36 +02:00
|
|
|
if (millis() - lastMqttReconnectAttempt > 30000) {
|
|
|
|
if (lastMqttReconnectAttempt > millis()) rolloverMillis++; //millis() rolls over every 50 days
|
2020-04-10 12:30:08 +02:00
|
|
|
initMqtt();
|
2020-04-30 01:52:36 +02:00
|
|
|
}
|
2020-06-26 17:28:35 +02:00
|
|
|
yield();
|
|
|
|
handleWs();
|
2020-10-19 18:08:45 +02:00
|
|
|
handleStatusLED();
|
2020-05-28 02:20:02 +02:00
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
// DEBUG serial logging
|
|
|
|
#ifdef WLED_DEBUG
|
|
|
|
if (millis() - debugTime > 9999) {
|
|
|
|
DEBUG_PRINTLN("---DEBUG INFO---");
|
2020-05-28 02:20:02 +02:00
|
|
|
DEBUG_PRINT("Runtime: "); DEBUG_PRINTLN(millis());
|
|
|
|
DEBUG_PRINT("Unix time: "); DEBUG_PRINTLN(now());
|
|
|
|
DEBUG_PRINT("Free heap: "); DEBUG_PRINTLN(ESP.getFreeHeap());
|
|
|
|
DEBUG_PRINT("Wifi state: "); DEBUG_PRINTLN(WiFi.status());
|
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
if (WiFi.status() != lastWifiState) {
|
|
|
|
wifiStateChangedTime = millis();
|
|
|
|
}
|
|
|
|
lastWifiState = WiFi.status();
|
2020-05-28 02:20:02 +02:00
|
|
|
DEBUG_PRINT("State time: "); DEBUG_PRINTLN(wifiStateChangedTime);
|
|
|
|
DEBUG_PRINT("NTP last sync: "); DEBUG_PRINTLN(ntpLastSyncTime);
|
2020-11-13 18:25:13 +01:00
|
|
|
DEBUG_PRINT("Client IP: "); DEBUG_PRINTLN(Network.localIP());
|
2020-05-28 02:20:02 +02:00
|
|
|
DEBUG_PRINT("Loops/sec: "); DEBUG_PRINTLN(loops / 10);
|
2020-04-10 12:30:08 +02:00
|
|
|
loops = 0;
|
|
|
|
debugTime = millis();
|
|
|
|
}
|
|
|
|
loops++;
|
2020-05-28 02:20:02 +02:00
|
|
|
#endif // WLED_DEBUG
|
2020-04-10 12:30:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void WLED::setup()
|
|
|
|
{
|
|
|
|
Serial.begin(115200);
|
|
|
|
Serial.setTimeout(50);
|
|
|
|
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());
|
2020-05-28 02:20:02 +02:00
|
|
|
registerUsermods();
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-11-05 22:54:13 +01:00
|
|
|
//strip.init(EEPROM.read(372), ledCount, EEPROM.read(2204)); // init LEDs quickly
|
|
|
|
//strip.setBrightness(0);
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-11-05 22:54:13 +01:00
|
|
|
//DEBUG_PRINT(F("LEDs inited. heap usage ~"));
|
|
|
|
//DEBUG_PRINTLN(heapPreAlloc - ESP.getFreeHeap());
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-11-05 22:54:13 +01:00
|
|
|
|
|
|
|
bool fsinit = false;
|
|
|
|
DEBUGFS_PRINTLN(F("Mount FS"));
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
fsinit = WLED_FS.begin(true);
|
|
|
|
#else
|
|
|
|
fsinit = WLED_FS.begin();
|
2020-04-10 12:30:08 +02:00
|
|
|
#endif
|
2020-11-05 22:54:13 +01:00
|
|
|
if (!fsinit) {
|
|
|
|
DEBUGFS_PRINTLN(F("FS failed!"));
|
|
|
|
errorFlag = ERR_FS_BEGIN;
|
|
|
|
} else deEEP();
|
|
|
|
updateFSInfo();
|
|
|
|
deserializeConfig();
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-10-19 18:08:45 +02:00
|
|
|
#if STATUSLED && STATUSLED != LEDPIN
|
|
|
|
pinMode(STATUSLED, OUTPUT);
|
|
|
|
#endif
|
|
|
|
|
2020-11-05 22:54:13 +01:00
|
|
|
//DEBUG_PRINTLN(F("Load EEPROM"));
|
|
|
|
//loadSettingsFromEEPROM();
|
2020-04-10 12:30:08 +02:00
|
|
|
beginStrip();
|
|
|
|
userSetup();
|
2020-05-28 02:20:02 +02:00
|
|
|
usermods.setup();
|
2020-04-10 12:30:08 +02:00
|
|
|
if (strcmp(clientSSID, DEFAULT_CLIENT_SSID) == 0)
|
|
|
|
showWelcomePage = true;
|
|
|
|
WiFi.persistent(false);
|
2020-11-13 18:25:13 +01:00
|
|
|
WiFi.onEvent(WiFiEvent);
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
Serial.println(F("Ada"));
|
2020-04-10 12:30:08 +02:00
|
|
|
|
|
|
|
// generate module IDs
|
|
|
|
escapedMac = WiFi.macAddress();
|
|
|
|
escapedMac.replace(":", "");
|
|
|
|
escapedMac.toLowerCase();
|
|
|
|
if (strcmp(cmDNS, "x") == 0) // fill in unique mdns default
|
|
|
|
{
|
2020-09-20 01:18:31 +02:00
|
|
|
strcpy_P(cmDNS, PSTR("wled-"));
|
2020-04-10 12:30:08 +02:00
|
|
|
sprintf(cmDNS + 5, "%*s", 6, escapedMac.c_str() + 6);
|
|
|
|
}
|
|
|
|
if (mqttDeviceTopic[0] == 0) {
|
2020-09-20 01:18:31 +02:00
|
|
|
strcpy_P(mqttDeviceTopic, PSTR("wled/"));
|
2020-04-10 12:30:08 +02:00
|
|
|
sprintf(mqttDeviceTopic + 5, "%*s", 6, escapedMac.c_str() + 6);
|
|
|
|
}
|
|
|
|
if (mqttClientID[0] == 0) {
|
2020-09-20 01:18:31 +02:00
|
|
|
strcpy_P(mqttClientID, PSTR("WLED-"));
|
2020-04-10 12:30:08 +02:00
|
|
|
sprintf(mqttClientID + 5, "%*s", 6, escapedMac.c_str() + 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
strip.service();
|
|
|
|
|
|
|
|
#ifndef WLED_DISABLE_OTA
|
|
|
|
if (aOtaEnabled) {
|
|
|
|
ArduinoOTA.onStart([]() {
|
|
|
|
#ifdef ESP8266
|
|
|
|
wifi_set_sleep_type(NONE_SLEEP_T);
|
|
|
|
#endif
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Start ArduinoOTA"));
|
2020-04-10 12:30:08 +02:00
|
|
|
});
|
|
|
|
if (strlen(cmDNS) > 0)
|
|
|
|
ArduinoOTA.setHostname(cmDNS);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef WLED_ENABLE_DMX
|
|
|
|
initDMX();
|
|
|
|
#endif
|
|
|
|
// HTTP server page init
|
|
|
|
initServer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void WLED::beginStrip()
|
|
|
|
{
|
|
|
|
// Initialize NeoPixel Strip and button
|
2020-11-06 22:12:48 +01:00
|
|
|
#ifdef ESP8266
|
|
|
|
#if LEDPIN == 3
|
|
|
|
if (ledCount > MAX_LEDS_DMA)
|
|
|
|
ledCount = MAX_LEDS_DMA; // DMA method uses too much ram
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (ledCount > MAX_LEDS || ledCount == 0)
|
|
|
|
ledCount = 30;
|
|
|
|
|
2020-11-05 22:54:13 +01:00
|
|
|
strip.init(useRGBW, ledCount, skipFirstLed);
|
|
|
|
strip.setBrightness(0);
|
2020-04-10 12:30:08 +02:00
|
|
|
strip.setShowCallback(handleOverlayDraw);
|
|
|
|
|
|
|
|
#ifdef BTNPIN
|
2020-11-15 12:41:51 +01:00
|
|
|
pinManager.allocatePin(BTNPIN, false);
|
2020-04-10 12:30:08 +02:00
|
|
|
pinMode(BTNPIN, INPUT_PULLUP);
|
|
|
|
#endif
|
|
|
|
|
2020-10-08 00:52:15 +02:00
|
|
|
if (bootPreset > 0) applyPreset(bootPreset);
|
2020-04-10 12:30:08 +02:00
|
|
|
colorUpdated(NOTIFIER_CALL_MODE_INIT);
|
|
|
|
|
|
|
|
// init relay pin
|
|
|
|
#if RLYPIN >= 0
|
2020-11-15 12:41:51 +01:00
|
|
|
pinManager.allocatePin(RLYPIN);
|
2020-04-10 12:30:08 +02:00
|
|
|
pinMode(RLYPIN, OUTPUT);
|
|
|
|
#if RLYMDE
|
|
|
|
digitalWrite(RLYPIN, bri);
|
|
|
|
#else
|
|
|
|
digitalWrite(RLYPIN, !bri);
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// disable button if it is "pressed" unintentionally
|
2020-09-20 16:12:46 +02:00
|
|
|
#if defined(BTNPIN) || defined(TOUCHPIN)
|
|
|
|
if (isButtonPressed())
|
2020-04-10 12:30:08 +02:00
|
|
|
buttonEnabled = false;
|
|
|
|
#else
|
|
|
|
buttonEnabled = false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void WLED::initAP(bool resetAP)
|
|
|
|
{
|
|
|
|
if (apBehavior == AP_BEHAVIOR_BUTTON_ONLY && !resetAP)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (!apSSID[0] || resetAP)
|
2020-09-27 11:43:28 +02:00
|
|
|
strcpy_P(apSSID, PSTR("WLED-AP"));
|
2020-04-10 12:30:08 +02:00
|
|
|
if (resetAP)
|
2020-09-27 11:43:28 +02:00
|
|
|
strcpy_P(apPass, PSTR(DEFAULT_AP_PASS));
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINT(F("Opening access point "));
|
2020-04-10 12:30:08 +02:00
|
|
|
DEBUG_PRINTLN(apSSID);
|
|
|
|
WiFi.softAPConfig(IPAddress(4, 3, 2, 1), IPAddress(4, 3, 2, 1), IPAddress(255, 255, 255, 0));
|
|
|
|
WiFi.softAP(apSSID, apPass, apChannel, apHide);
|
|
|
|
|
2020-09-27 11:43:28 +02:00
|
|
|
if (!apActive) // start captive portal if AP active
|
2020-04-10 12:30:08 +02:00
|
|
|
{
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Init AP interfaces"));
|
2020-04-10 12:30:08 +02:00
|
|
|
server.begin();
|
|
|
|
if (udpPort > 0 && udpPort != ntpLocalPort) {
|
|
|
|
udpConnected = notifierUdp.begin(udpPort);
|
|
|
|
}
|
|
|
|
if (udpRgbPort > 0 && udpRgbPort != ntpLocalPort && udpRgbPort != udpPort) {
|
|
|
|
udpRgbConnected = rgbUdp.begin(udpRgbPort);
|
|
|
|
}
|
2020-09-27 11:43:28 +02:00
|
|
|
if (udpPort2 > 0 && udpPort2 != ntpLocalPort && udpPort2 != udpPort && udpPort2 != udpRgbPort) {
|
|
|
|
udp2Connected = notifier2Udp.begin(udpPort2);
|
2020-09-27 11:37:16 +02:00
|
|
|
}
|
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
dnsServer.setErrorReplyCode(DNSReplyCode::NoError);
|
|
|
|
dnsServer.start(53, "*", WiFi.softAPIP());
|
|
|
|
}
|
|
|
|
apActive = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void WLED::initConnection()
|
|
|
|
{
|
2020-06-26 17:28:35 +02:00
|
|
|
#ifdef WLED_ENABLE_WEBSOCKETS
|
|
|
|
ws.onEvent(wsEvent);
|
|
|
|
#endif
|
|
|
|
|
2020-11-13 18:25:13 +01:00
|
|
|
#if defined(ARDUINO_ARCH_ESP32) && defined(WLED_USE_ETHERNET)
|
|
|
|
ETH.begin();
|
|
|
|
#endif
|
|
|
|
|
2020-04-30 01:52:36 +02:00
|
|
|
WiFi.disconnect(true); // close old connections
|
2020-04-10 12:30:08 +02:00
|
|
|
#ifdef ESP8266
|
|
|
|
WiFi.setPhyMode(WIFI_PHY_MODE_11N);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (staticIP[0] != 0 && staticGateway[0] != 0) {
|
|
|
|
WiFi.config(staticIP, staticGateway, staticSubnet, IPAddress(8, 8, 8, 8));
|
|
|
|
} else {
|
|
|
|
WiFi.config(0U, 0U, 0U);
|
|
|
|
}
|
|
|
|
|
|
|
|
lastReconnectAttempt = millis();
|
|
|
|
|
|
|
|
if (!WLED_WIFI_CONFIGURED) {
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINT(F("No connection configured. "));
|
2020-04-10 12:30:08 +02:00
|
|
|
if (!apActive)
|
|
|
|
initAP(); // instantly go to ap mode
|
|
|
|
return;
|
|
|
|
} else if (!apActive) {
|
|
|
|
if (apBehavior == AP_BEHAVIOR_ALWAYS) {
|
|
|
|
initAP();
|
|
|
|
} else {
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Access point disabled."));
|
2020-04-10 12:30:08 +02:00
|
|
|
WiFi.softAPdisconnect(true);
|
2020-04-30 01:52:36 +02:00
|
|
|
WiFi.mode(WIFI_STA);
|
2020-04-10 12:30:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
showWelcomePage = false;
|
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINT(F("Connecting to "));
|
2020-04-10 12:30:08 +02:00
|
|
|
DEBUG_PRINT(clientSSID);
|
|
|
|
DEBUG_PRINTLN("...");
|
|
|
|
|
2020-07-19 16:24:26 +02:00
|
|
|
// convert the "serverDescription" into a valid DNS hostname (alphanumeric)
|
|
|
|
char hostname[25] = "wled-";
|
2020-11-13 18:25:13 +01:00
|
|
|
prepareHostname(hostname);
|
2020-07-19 16:24:26 +02:00
|
|
|
|
2020-04-10 12:30:08 +02:00
|
|
|
#ifdef ESP8266
|
2020-07-19 16:24:26 +02:00
|
|
|
WiFi.hostname(hostname);
|
2020-04-10 12:30:08 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
WiFi.begin(clientSSID, clientPass);
|
|
|
|
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
WiFi.setSleep(!noWifiSleep);
|
2020-07-19 16:24:26 +02:00
|
|
|
WiFi.setHostname(hostname);
|
2020-04-10 12:30:08 +02:00
|
|
|
#else
|
|
|
|
wifi_set_sleep_type((noWifiSleep) ? NONE_SLEEP_T : MODEM_SLEEP_T);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void WLED::initInterfaces()
|
|
|
|
{
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Init STA interfaces"));
|
2020-04-10 12:30:08 +02:00
|
|
|
|
|
|
|
if (hueIP[0] == 0) {
|
2020-11-13 18:25:13 +01:00
|
|
|
hueIP[0] = Network.localIP()[0];
|
|
|
|
hueIP[1] = Network.localIP()[1];
|
|
|
|
hueIP[2] = Network.localIP()[2];
|
2020-04-10 12:30:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// init Alexa hue emulation
|
|
|
|
if (alexaEnabled)
|
|
|
|
alexaInit();
|
|
|
|
|
|
|
|
#ifndef WLED_DISABLE_OTA
|
|
|
|
if (aOtaEnabled)
|
|
|
|
ArduinoOTA.begin();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
strip.service();
|
|
|
|
// Set up mDNS responder:
|
|
|
|
if (strlen(cmDNS) > 0) {
|
2020-09-03 14:04:33 +02:00
|
|
|
#ifndef WLED_DISABLE_OTA
|
|
|
|
if (!aOtaEnabled) //ArduinoOTA begins mDNS for us if enabled
|
2020-04-10 12:30:08 +02:00
|
|
|
MDNS.begin(cmDNS);
|
2020-09-03 14:04:33 +02:00
|
|
|
#else
|
|
|
|
MDNS.begin(cmDNS);
|
|
|
|
#endif
|
2020-04-10 12:30:08 +02:00
|
|
|
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("mDNS started"));
|
2020-04-10 12:30:08 +02:00
|
|
|
MDNS.addService("http", "tcp", 80);
|
|
|
|
MDNS.addService("wled", "tcp", 80);
|
|
|
|
MDNS.addServiceTxt("wled", "tcp", "mac", escapedMac.c_str());
|
|
|
|
}
|
|
|
|
server.begin();
|
|
|
|
|
|
|
|
if (udpPort > 0 && udpPort != ntpLocalPort) {
|
|
|
|
udpConnected = notifierUdp.begin(udpPort);
|
|
|
|
if (udpConnected && udpRgbPort != udpPort)
|
|
|
|
udpRgbConnected = rgbUdp.begin(udpRgbPort);
|
2020-09-27 11:43:28 +02:00
|
|
|
if (udpConnected && udpPort2 != udpPort && udpPort2 != udpRgbPort)
|
|
|
|
udp2Connected = notifier2Udp.begin(udpPort2);
|
2020-04-10 12:30:08 +02:00
|
|
|
}
|
|
|
|
if (ntpEnabled)
|
|
|
|
ntpConnected = ntpUdp.begin(ntpLocalPort);
|
|
|
|
|
|
|
|
initBlynk(blynkApiKey);
|
2020-04-13 00:42:27 +02:00
|
|
|
e131.begin(e131Multicast, e131Port, e131Universe, E131_MAX_UNIVERSE_COUNT);
|
2020-04-10 12:30:08 +02:00
|
|
|
reconnectHue();
|
|
|
|
initMqtt();
|
|
|
|
interfacesInited = true;
|
|
|
|
wasConnected = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
byte stacO = 0;
|
|
|
|
uint32_t lastHeap;
|
|
|
|
unsigned long heapTime = 0;
|
|
|
|
|
|
|
|
void WLED::handleConnection()
|
|
|
|
{
|
|
|
|
if (millis() < 2000 && (!WLED_WIFI_CONFIGURED || apBehavior == AP_BEHAVIOR_ALWAYS))
|
|
|
|
return;
|
|
|
|
if (lastReconnectAttempt == 0)
|
|
|
|
initConnection();
|
|
|
|
|
|
|
|
// reconnect WiFi to clear stale allocations if heap gets too low
|
|
|
|
if (millis() - heapTime > 5000) {
|
|
|
|
uint32_t heap = ESP.getFreeHeap();
|
|
|
|
if (heap < 9000 && lastHeap < 9000) {
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINT(F("Heap too low! "));
|
2020-04-10 12:30:08 +02:00
|
|
|
DEBUG_PRINTLN(heap);
|
|
|
|
forceReconnect = true;
|
|
|
|
}
|
|
|
|
lastHeap = heap;
|
|
|
|
heapTime = millis();
|
|
|
|
}
|
|
|
|
|
|
|
|
byte stac = 0;
|
|
|
|
if (apActive) {
|
|
|
|
#ifdef ESP8266
|
|
|
|
stac = wifi_softap_get_station_num();
|
|
|
|
#else
|
|
|
|
wifi_sta_list_t stationList;
|
|
|
|
esp_wifi_ap_get_sta_list(&stationList);
|
|
|
|
stac = stationList.num;
|
|
|
|
#endif
|
|
|
|
if (stac != stacO) {
|
|
|
|
stacO = stac;
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINT(F("Connected AP clients: "));
|
2020-04-10 12:30:08 +02:00
|
|
|
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) {
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Forcing reconnect."));
|
2020-04-10 12:30:08 +02:00
|
|
|
initConnection();
|
|
|
|
interfacesInited = false;
|
|
|
|
forceReconnect = false;
|
|
|
|
wasConnected = false;
|
|
|
|
return;
|
|
|
|
}
|
2020-11-13 18:25:13 +01:00
|
|
|
if (!Network.isConnected()) {
|
2020-04-10 12:30:08 +02:00
|
|
|
if (interfacesInited) {
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Disconnected!"));
|
2020-04-10 12:30:08 +02:00
|
|
|
interfacesInited = false;
|
|
|
|
initConnection();
|
|
|
|
}
|
|
|
|
if (millis() - lastReconnectAttempt > ((stac) ? 300000 : 20000) && WLED_WIFI_CONFIGURED)
|
|
|
|
initConnection();
|
|
|
|
if (!apActive && millis() - lastReconnectAttempt > 12000 && (!wasConnected || apBehavior == AP_BEHAVIOR_NO_CONN))
|
|
|
|
initAP();
|
|
|
|
} else if (!interfacesInited) { // newly connected
|
|
|
|
DEBUG_PRINTLN("");
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINT(F("Connected! IP address: "));
|
2020-11-13 18:25:13 +01:00
|
|
|
DEBUG_PRINTLN(Network.localIP());
|
2020-04-10 12:30:08 +02:00
|
|
|
initInterfaces();
|
|
|
|
userConnected();
|
2020-05-28 02:20:02 +02:00
|
|
|
usermods.connected();
|
2020-04-10 12:30:08 +02:00
|
|
|
|
|
|
|
// shut down AP
|
|
|
|
if (apBehavior != AP_BEHAVIOR_ALWAYS && apActive) {
|
|
|
|
dnsServer.stop();
|
|
|
|
WiFi.softAPdisconnect(true);
|
|
|
|
apActive = false;
|
2020-09-20 01:18:31 +02:00
|
|
|
DEBUG_PRINTLN(F("Access point disabled."));
|
2020-04-10 12:30:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-19 18:08:45 +02:00
|
|
|
|
|
|
|
void WLED::handleStatusLED()
|
|
|
|
{
|
|
|
|
#if STATUSLED && STATUSLED != LEDPIN
|
|
|
|
ledStatusType = WLED_CONNECTED ? 0 : 2;
|
|
|
|
if (mqttEnabled && ledStatusType != 2) // Wi-Fi takes presendence over MQTT
|
|
|
|
ledStatusType = WLED_MQTT_CONNECTED ? 0 : 4;
|
|
|
|
if (ledStatusType) {
|
|
|
|
if (millis() - ledStatusLastMillis >= (1000/ledStatusType)) {
|
|
|
|
ledStatusLastMillis = millis();
|
|
|
|
ledStatusState = ledStatusState ? 0 : 1;
|
|
|
|
digitalWrite(STATUSLED, ledStatusState);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
#ifdef STATUSLEDINVERTED
|
|
|
|
digitalWrite(STATUSLED, HIGH);
|
|
|
|
#else
|
|
|
|
digitalWrite(STATUSLED, LOW);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|