#include "main.h" #include "version.h" #include "html/h/style_css.h" #include "html/h/setup_html.h" //----------------------------------------------------------------------------- Main::Main(void) { mDns = new DNSServer(); mWeb = new ESP8266WebServer(80); mUpdater = new ESP8266HTTPUpdateServer(); mUdp = new WiFiUDP(); mApActive = true; mWifiSettingsValid = false; mSettingsValid = false; mLimit = 10; mNextTryTs = 0; mApLastTick = 0; snprintf(mVersion, 12, "%d.%d.%d", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); memset(&mDeviceName, 0, DEVNAME_LEN); mEep = new eep(); Serial.begin(115200); mUptimeSecs = 0; mUptimeTicker = 0xffffffff; mUptimeInterval = 1000; } //----------------------------------------------------------------------------- void Main::setup(uint32_t timeout) { bool startAp = mApActive; mLimit = timeout; mWeb->on("/setup", std::bind(&Main::showSetup, this)); mWeb->on("/save", std::bind(&Main::showSave, this)); mWeb->on("/uptime", std::bind(&Main::showUptime, this)); mWeb->on("/time", std::bind(&Main::showTime, this)); mWeb->on("/style.css", std::bind(&Main::showCss, this)); mWeb->on("/reboot", std::bind(&Main::showReboot, this)); mWeb->on("/factory", std::bind(&Main::showFactoryRst, this)); mWeb->onNotFound ( std::bind(&Main::showNotFound, this)); startAp = getConfig(); #ifndef AP_ONLY if(false == startAp) startAp = setupStation(timeout); #else setupAp(WIFI_AP_SSID, WIFI_AP_PWD); #endif if(!startAp) { mTimestamp = getNtpTime(); DPRINTLN("[NTP]: " + getDateTimeStr(getNtpTime())); } mUpdater->setup(mWeb); mApActive = startAp; } //----------------------------------------------------------------------------- void Main::loop(void) { if(mApActive) { mDns->processNextRequest(); #ifndef AP_ONLY if(checkTicker(&mNextTryTs, (WIFI_AP_ACTIVE_TIME * 1000))) { mApLastTick = millis(); mApActive = setupStation(mLimit); if(mApActive) { if(strlen(WIFI_AP_PWD) < 8) DPRINTLN("ERROR: password must be at least 8 characters long"); setupAp(WIFI_AP_SSID, WIFI_AP_PWD); } } else { if(millis() - mApLastTick > 10000) { mApLastTick = millis(); DPRINTLN("AP will be closed in " + String((mNextTryTs - mApLastTick) / 1000) + " seconds"); } } #endif } mWeb->handleClient(); if(checkTicker(&mUptimeTicker, mUptimeInterval)) { mUptimeSecs++; mTimestamp++; } } //----------------------------------------------------------------------------- bool Main::getConfig(void) { bool mApActive = false; mWifiSettingsValid = checkEEpCrc(ADDR_START, ADDR_WIFI_CRC, ADDR_WIFI_CRC); mSettingsValid = checkEEpCrc(ADDR_START_SETTINGS, (ADDR_NEXT-ADDR_START_SETTINGS), ADDR_SETTINGS_CRC); if(mWifiSettingsValid) { mEep->read(ADDR_SSID, mStationSsid, SSID_LEN); mEep->read(ADDR_PWD, mStationPwd, PWD_LEN); mEep->read(ADDR_DEVNAME, mDeviceName, DEVNAME_LEN); } else { /*mApActive = true; memset(mStationSsid, 0, SSID_LEN); memset(mStationPwd, 0, PWD_LEN); memset(mDeviceName, 0, DEVNAME_LEN); // erase application settings except wifi settings eraseSettings();*/ snprintf(mStationSsid, SSID_LEN, "%s", FB_WIFI_SSID); snprintf(mStationPwd, PWD_LEN, "%s", FB_WIFI_PWD); snprintf(mDeviceName, DEVNAME_LEN, "%s", DEF_DEVICE_NAME); } return mApActive; } //----------------------------------------------------------------------------- void Main::setupAp(const char *ssid, const char *pwd) { IPAddress apIp(192, 168, 1, 1); DPRINTLN("\n---------\nAP MODE\nSSDI: " + String(ssid) + "\nPWD: " + String(pwd) + "\nActive for: " + String(WIFI_AP_ACTIVE_TIME) + " seconds" + "\n---------\n"); DPRINTLN("DBG: " + String(mNextTryTs)); WiFi.mode(WIFI_AP); WiFi.softAPConfig(apIp, apIp, IPAddress(255, 255, 255, 0)); WiFi.softAP(ssid, pwd); mDns->start(mDnsPort, "*", apIp); mWeb->onNotFound([&]() { showSetup(); }); mWeb->on("/", std::bind(&Main::showSetup, this)); mWeb->begin(); } //----------------------------------------------------------------------------- bool Main::setupStation(uint32_t timeout) { int32_t cnt; bool startAp = false; if(timeout >= 3) cnt = (timeout - 3) / 2 * 10; else { timeout = 1; cnt = 1; } WiFi.mode(WIFI_STA); WiFi.begin(mStationSsid, mStationPwd); if(String(mDeviceName) != "") WiFi.hostname(mDeviceName); delay(2000); DPRINTLN("connect to network '" + String(mStationSsid) + "' ..."); while (WiFi.status() != WL_CONNECTED) { delay(100); if(cnt % 100 == 0) Serial.println("."); else Serial.print("."); if(timeout > 0) { // limit == 0 -> no limit if(--cnt <= 0) { if(WiFi.status() != WL_CONNECTED) { startAp = true; WiFi.disconnect(); } delay(100); break; } } } Serial.println("."); if(false == startAp) { mWeb->begin(); } delay(1000); return startAp; } //----------------------------------------------------------------------------- void Main::showSetup(void) { String html = FPSTR(setup_html); html.replace("{SSID}", mStationSsid); // PWD will be left at the default value (for protection) // -> the PWD will only be changed if it does not match the default "{PWD}" html.replace("{DEVICE}", String(mDeviceName)); html.replace("{VERSION}", String(mVersion)); if(mApActive) html.replace("{IP}", String("http://192.168.1.1")); else html.replace("{IP}", ("http://" + String(WiFi.localIP().toString()))); mWeb->send(200, "text/html", html); } //----------------------------------------------------------------------------- void Main::showCss(void) { mWeb->send(200, "text/css", FPSTR(style_css)); } //----------------------------------------------------------------------------- void Main::showSave(void) { saveValues(true); } //----------------------------------------------------------------------------- void Main::saveValues(bool webSend = true) { if(mWeb->args() > 0) { if(mWeb->arg("ssid") != "") { memset(mStationSsid, 0, SSID_LEN); mWeb->arg("ssid").toCharArray(mStationSsid, SSID_LEN); mEep->write(ADDR_SSID, mStationSsid, SSID_LEN); if(mWeb->arg("pwd") != "{PWD}") { memset(mStationPwd, 0, PWD_LEN); mWeb->arg("pwd").toCharArray(mStationPwd, PWD_LEN); mEep->write(ADDR_PWD, mStationPwd, PWD_LEN); } } memset(mDeviceName, 0, DEVNAME_LEN); mWeb->arg("device").toCharArray(mDeviceName, DEVNAME_LEN); mEep->write(ADDR_DEVNAME, mDeviceName, DEVNAME_LEN); updateCrc(); if(webSend) { if(mWeb->arg("reboot") == "on") showReboot(); else // TODO: add device name as redirect in AP-mode mWeb->send(200, "text/html", "
saved
"); } } } //----------------------------------------------------------------------------- void Main::updateCrc(void) { uint16_t crc; crc = buildEEpCrc(ADDR_START, ADDR_WIFI_CRC); //Serial.println("new CRC: " + String(crc, HEX)); mEep->write(ADDR_WIFI_CRC, crc); } //----------------------------------------------------------------------------- void Main::showUptime(void) { char time[20] = {0}; int upTimeSc = uint32_t((mUptimeSecs) % 60); int upTimeMn = uint32_t((mUptimeSecs / (60)) % 60); int upTimeHr = uint32_t((mUptimeSecs / (60 * 60)) % 24); int upTimeDy = uint32_t((mUptimeSecs / (60 * 60 * 24)) % 365); snprintf(time, 20, "%d Tage, %02d:%02d:%02d", upTimeDy, upTimeHr, upTimeMn, upTimeSc); mWeb->send(200, "text/plain", String(time)); } //----------------------------------------------------------------------------- void Main::showTime(void) { mWeb->send(200, "text/plain", getDateTimeStr(mTimestamp)); } //----------------------------------------------------------------------------- void Main::showNotFound(void) { String msg = "File Not Found\n\n"; msg += "URI: "; msg += mWeb->uri(); msg += "\nMethod: "; msg += ( mWeb->method() == HTTP_GET ) ? "GET" : "POST"; msg += "\nArguments: "; msg += mWeb->args(); msg += "\n"; for(uint8_t i = 0; i < mWeb->args(); i++ ) { msg += " " + mWeb->argName(i) + ": " + mWeb->arg(i) + "\n"; } mWeb->send(404, "text/plain", msg); } //----------------------------------------------------------------------------- void Main::showReboot(void) { mWeb->send(200, "text/html", "