Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Guzz-T committed Feb 20, 2024
1 parent 8a0bcde commit ce7ed46
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The following example reads in data from the heat pump:
from luxtronik import Luxtronik

l = Luxtronik('192.168.1.23', 8889)
heating_limit = l.parameters.get("ID_Einst_Heizgrenze")
heating_limit = l.parameters.get("ID_Einst_Heizgrenze_Temp")

# Do something else here...

Expand Down Expand Up @@ -200,7 +200,8 @@ from luxtronik import Luxtronik, Parameters
l = Luxtronik('192.168.1.23', 8889)

# Queue a parameter change
l.parameters.set("ID_Einst_Heizgrenze", 14.0)
# In this example, the domestic hot water temperature is set to 45 degrees.
l.parameters.set("ID_Soll_BWS_akt", 45.0)

# Write all queued changes to the heat pump
l.write()
Expand Down

0 comments on commit ce7ed46

Please sign in to comment.