Update battery levels
Issue #4 : mise à jour des tensions de batterie pour les li-ion / li-po actuelles + de durée de vie (cycles) + de sécu
This commit is contained in:
parent
f30699b5ef
commit
4d20da3234
@ -812,7 +812,7 @@ uint8_t getVccPixels()
|
||||
//Serial.println(real_bat);
|
||||
average_vcc = (average_vcc == 0) ? real_bat : (int)(average_vcc * 0.94 + real_bat * 0.06);
|
||||
|
||||
uint8_t pixels = map(average_vcc, 3100, 4100, 0, 8);
|
||||
uint8_t pixels = map(average_vcc, 3350, 4200, 0, 8);
|
||||
if (pixels > 8)
|
||||
pixels = 8;
|
||||
else if (pixels < 1)
|
||||
|
Loading…
Reference in New Issue
Block a user