MQTT reconnect delay, fixed ESP32 build

This commit is contained in:
tastendruecker123 2022-08-22 19:59:45 +02:00
parent c62996c139
commit 079ba896d1
3 changed files with 13 additions and 10 deletions

View file

@ -453,7 +453,7 @@ void web::showWebApi(void)
if (cmd == AlarmData){
iv->alarmMesIndex = response["payload"];
}
DPRINTLN(DBG_INFO, F("Will make tx-request 0x15 with subcmd ") + String(cmd) + F(" and payload ") + String(response["payload"]));
DPRINTLN(DBG_INFO, F("Will make tx-request 0x15 with subcmd ") + String(cmd) + F(" and payload ") + String((uint16_t) response["payload"]));
// process payload from web request corresponding to the cmd
iv->enqueCommand<InfoCommand>(cmd);
}