Fixed voltage range for yellow ESP indicator

This commit is contained in:
Gunnar Skjold 2022-02-06 11:28:56 +01:00
parent 28db4873a0
commit 460482a6dc

View File

@ -743,7 +743,7 @@ void AmsWebServer::dataJson() {
espStatus = 1;
} else if(vcc > 2.8 && vcc < 3.5) {
espStatus = 1;
} else if(vcc > 2.2 && vcc < 3.6) {
} else if(vcc > 2.7 && vcc < 3.6) {
espStatus = 2;
} else {
espStatus = 3;