firmware wip - MOST WEBUI STUFF IS DONE!

This commit is contained in:
Marcus 2024-04-17 23:25:46 +02:00
parent d5695f8926
commit 56ce028b38
1 changed files with 2 additions and 3 deletions

View File

@ -1211,7 +1211,7 @@ void WEBroot() {
} else {
String body = FPSTR(HTMLheader);
body += "<h1>&#x1F331;";
body += "<h1>&#x1F331; ";
body += GrowName;
body += "</h1>";
body += "<p>";
@ -1226,7 +1226,7 @@ void WEBroot() {
body += " %<br>";
body += "Humidity: ";
body += getHumidity();
body += " ?<br>";
body += " %<br>";
body += "Temperature: ";
body += getTemperature(TemperatureSensor_Type);
body += " °C<br>";
@ -1838,4 +1838,3 @@ String JSreplaceStr(String elementID, String content) {
*/