Decreased limit

This commit is contained in:
CommanderRedYT
2022-12-18 19:33:37 +01:00
parent b984360956
commit d29a74dbd4

View File

@ -58,9 +58,9 @@ bool brakeLights()
{ {
if (const auto avgVoltage = controllers.getAvgVoltage(); avgVoltage) if (const auto avgVoltage = controllers.getAvgVoltage(); avgVoltage)
{ {
auto watt = sumCurrent * *avgVoltage; const auto watt = sumCurrent * *avgVoltage;
return watt < -20; return watt < -1;
} }
} }