/* OTA MODULE Copyright (C) 2016-2017 by Xose PĂ©rez */ #include "ArduinoOTA.h" // ----------------------------------------------------------------------------- // OTA // ----------------------------------------------------------------------------- void otaConfigure() { ArduinoOTA.setPort(OTA_PORT); ArduinoOTA.setHostname(getSetting("hostname").c_str()); ArduinoOTA.setPassword(getSetting("adminPass", ADMIN_PASS).c_str()); } void otaSetup() { otaConfigure(); ArduinoOTA.onStart([]() { DEBUG_MSG_P(PSTR("[OTA] Start\n")); #if WEB_SUPPORT wsSend_P(PSTR("{\"message\": \"OTA update started\"}")); #endif }); ArduinoOTA.onEnd([]() { customReset(CUSTOM_RESET_OTA); DEBUG_MSG_P(PSTR("\n[OTA] End\n")); #if WEB_SUPPORT wsSend_P(PSTR("{\"action\": \"reload\"}")); #endif delay(100); }); ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { DEBUG_MSG_P(PSTR("[OTA] Progress: %u%%%%\r"), (progress / (total / 100))); }); ArduinoOTA.onError([](ota_error_t error) { #if DEBUG_SERIAL_SUPPORT || DEBUG_UDP_SUPPORT DEBUG_MSG_P(PSTR("\n[OTA] Error #%u: "), error); if (error == OTA_AUTH_ERROR) DEBUG_MSG_P(PSTR("Auth Failed\n")); else if (error == OTA_BEGIN_ERROR) DEBUG_MSG_P(PSTR("Begin Failed\n")); else if (error == OTA_CONNECT_ERROR) DEBUG_MSG_P(PSTR("Connect Failed\n")); else if (error == OTA_RECEIVE_ERROR) DEBUG_MSG_P(PSTR("Receive Failed\n")); else if (error == OTA_END_ERROR) DEBUG_MSG_P(PSTR("End Failed\n")); #endif }); ArduinoOTA.begin(); } void otaLoop() { ArduinoOTA.handle(); }