firmware wip - add time in menu, make ntp offset work
This commit is contained in:
parent
3c8cba0b45
commit
7365fc2b85
1 changed files with 7 additions and 0 deletions
|
@ -1287,7 +1287,14 @@ void WEBroot() {
|
|||
}
|
||||
}
|
||||
|
||||
float growLightBrightnes = round((PINled_PWM / 255) * 100);
|
||||
Serial.print("growLightBrightnes: ");
|
||||
Serial.println(growLightBrightnes);
|
||||
|
||||
body += "<br>";
|
||||
body += "Growlight brightnes: ";
|
||||
body += growLightBrightnes;
|
||||
body += " %<br>";
|
||||
body += "<form method='post' action='/switch'>";
|
||||
body += "MOSFET<select id='output' name='output' required>\n";
|
||||
body += "<option disabled value='' selected hidden>---</option>\n";
|
||||
|
|
Loading…
Reference in a new issue