Skip to content

Commit 198caf4

Browse files
committed
With the current firmware, the plugin occasionally causes the inverter to shut down. This seems to be because the new firmware triggers sungrow_inverter_state=stop, which causes the automation to send a shutdown via Modbus.
My tests suggest that this fix solves issue mkaiser#416.
1 parent 28bd811 commit 198caf4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modbus_sungrow.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2648,7 +2648,7 @@ automation:
26482648
entity_id: input_select.set_sg_inverter_run_mode
26492649
data:
26502650
option: >
2651-
{% if is_state('sensor.sungrow_inverter_state', "Stop") or is_state('sensor.sungrow_inverter_state', "Shutdown") %}
2651+
{% if is_state('sensor.sungrow_inverter_state', "Shutdown") %}
26522652
Shutdown
26532653
{% else %}
26542654
Enabled

0 commit comments

Comments
 (0)