minor bugfix for usermod_v2_Battery.h

missing semicolon - caused compile errorsin debug mode.
This commit is contained in:
Frank 2023-05-08 20:59:57 +02:00 committed by GitHub
parent fb14bc6016
commit 52c4093fb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -383,7 +383,7 @@ class UsermodBattery : public Usermod
lp[FPSTR(_duration)] = lowPowerIndicatorDuration; lp[FPSTR(_duration)] = lowPowerIndicatorDuration;
// read voltage in case calibration or voltage multiplier changed to see immediate effect // read voltage in case calibration or voltage multiplier changed to see immediate effect
voltage = readVoltage() voltage = readVoltage();
DEBUG_PRINTLN(F("Battery config saved.")); DEBUG_PRINTLN(F("Battery config saved."));
} }