We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 146f8ec commit c61dc45Copy full SHA for c61dc45
src/Firmware/BatteryTools/BatteryCalibration/BatteryCalibration.ino
@@ -72,7 +72,7 @@ int getBatteryReading()
72
73
bool isBatteryPresent()
74
{
75
- return (getBatteryReading() < 150);
+ return (getBatteryReading() >= 150);
76
}
77
78
bool isBatteryAlreadyCalibrated()
@@ -120,7 +120,8 @@ void erasePreviousCalibrationData()
120
DELAY_MS(10000);
121
122
Serial.println("Note: Battery detected (you are good to go)...");
123
- Serial.println("Now stopped until reset or power removal.");
+ Serial.println("Now stopped until power removal.");
124
+ Serial.println("Remove any wired power supply to proceed to battery calibration.");
125
for (;;)
126
127
0 commit comments