Skip to content

Commit

Permalink
Fixed DOMOTICZ Volt value
Browse files Browse the repository at this point in the history
  • Loading branch information
ZuinigeRijder committed May 8, 2023
1 parent 0e8ba9b commit c74af29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soliscloud_to_pvoutput.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def main_loop():
if DOMOTICZ_INVERTER_TEMP_ID != "0":
send_to_domoticz(str(DOMOTICZ_INVERTER_TEMP_ID), str(inverter_temp))
if DOMOTICZ_VOLT_ID != "0":
send_to_domoticz(str(DOMOTICZ_AC_VOLT_ID), str(volt))
send_to_domoticz(str(DOMOTICZ_VOLT_ID), str(volt))
timestamp_previous = timestamp_current


Expand Down

0 comments on commit c74af29

Please sign in to comment.