diff --git a/packages/modules/common/hardware_check.py b/packages/modules/common/hardware_check.py index 2dd8931818..c12188bf52 100644 --- a/packages/modules/common/hardware_check.py +++ b/packages/modules/common/hardware_check.py @@ -42,8 +42,8 @@ def valid_voltage(voltage) -> bool: (valid_voltage(voltages[0]) and valid_voltage(voltages[1]) and voltages[2] == 0) or (valid_voltage(voltages[0]) and valid_voltage(voltages[1]) and valid_voltage((voltages[2])))): return METER_BROKEN_VOLTAGES.format(voltages) - if ((sum(counter_state.currents) < 0.5 and counter_state.power > 100) or - (sum(counter_state.currents) > 0.5 and counter_state.power < 100)): + if ((sum(counter_state.currents) < 0.5 and counter_state.power > 230) or + (sum(counter_state.currents) > 1 and counter_state.power < 100)): return METER_IMPLAUSIBLE_VALUE.format(counter_state.powers, counter_state.currents, counter_state.voltages) return None