udp support

This commit is contained in:
Dmitry Borisenko
2020-09-17 00:21:14 +03:00
parent e0a83189d9
commit fc91a60bab
5 changed files with 86 additions and 2 deletions

View File

@@ -149,8 +149,8 @@ String getUptimeTotal() {
static int hrs;
EEPROM.begin(512);
hrs = eeGetInt(0);
String hrsStr = prettySeconds(hrs * 60);
//Serial.println(hrsStr);
String hrsStr = prettySeconds(hrs * 60 * 60);
//Serial.println(hrsStr);
return hrsStr;
}