remove FirebaseJson from platfromio.ini, fix unintended change in PowerLimiter

This commit is contained in:
Fribur 2024-01-04 18:22:58 -05:00
parent d5eba2392c
commit bc38ce344f
2 changed files with 4 additions and 4 deletions

View File

@ -45,7 +45,6 @@ lib_deps =
https://github.com/arkhipenko/TaskScheduler#testing https://github.com/arkhipenko/TaskScheduler#testing
https://github.com/coryjfowler/MCP_CAN_lib https://github.com/coryjfowler/MCP_CAN_lib
plerup/EspSoftwareSerial@^8.0.1 plerup/EspSoftwareSerial@^8.0.1
mobizt/FirebaseJson @ ^3.0.6
rweather/Crypto@^0.4.0 rweather/Crypto@^0.4.0
extra_scripts = extra_scripts =

View File

@ -199,14 +199,15 @@ void PowerLimiterClass::loop()
// the normal mode of operation requires a valid // the normal mode of operation requires a valid
// power meter reading to calculate a power limit // power meter reading to calculate a power limit
if (!config.PowerMeter.Enabled) { if (!config.PowerMeter.Enabled) {
//instead of shutting down completelty, how about setting alternativly to a save "low production" mode?
//Could be usefull when PowerMeter fails but we know for sure house consumption will never fall below a certain limit (say 200W)
shutdown(Status::PowerMeterDisabled); shutdown(Status::PowerMeterDisabled);
return; return;
} }
//instead of shutting down on PowerMeterTimeout, how about setting alternativly to a safe "low production" mode?
//Could be usefull when PowerMeter fails but we know for sure house consumption will never fall below a certain limit (say 200W)
if (millis() - PowerMeter.getLastPowerMeterUpdate() > (30 * 1000)) { if (millis() - PowerMeter.getLastPowerMeterUpdate() > (30 * 1000)) {
shutdown(Status::PowerMeterTimeout);
return; return;
} }