Skip to content

Commit

Permalink
Update number.py (#758)
Browse files Browse the repository at this point in the history
Min Active Power Percentage derrating is -100% and not 0%.
Negate Percentage means the inverter is forced to charge the battery using power from the grid.
  • Loading branch information
peetersch authored Jul 2, 2024
1 parent d204d58 commit f0dfa27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion number.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def context(self):
key=rn.ACTIVE_POWER_PERCENTAGE_DERATING,
native_max_value=100,
native_step=0.1,
native_min_value=0,
native_min_value=-100,
icon="mdi:transmission-tower-off",
native_unit_of_measurement=PERCENTAGE,
entity_category=EntityCategory.CONFIG,
Expand Down

0 comments on commit f0dfa27

Please sign in to comment.