fix mqtt bug

This commit is contained in:
Dmitry Borisenko
2020-03-22 01:50:31 +01:00
parent 96e207676f
commit 9a775cd9d4
10 changed files with 66 additions and 95 deletions

View File

@@ -271,7 +271,7 @@ void getMemoryLoad(String text) {
if (memory_load > 65) Serial.print("Attention!!! too match memory used!!!");
Serial.print(text + " memory used:");
Serial.print(String(memory_load) + "%; ");
Serial.print("memory remain:");
Serial.print("memory remain: ");
Serial.println(String(memory_remain) + " k bytes");
}