Replies: 1 comment
-
I have been using heat_pump.get_register_data_by_register_group_and_name to obtain other metrics besides the ones that are available as heatpump.xx, such as heat_pump.heat_temperature. As an example I was interested in the value of integral. In the example.py file I simply added a line at the end to obtain this value (before adding it to my own code): print ("integral: " + str(heat_pump.get_register_data_by_register_group_and_name( All you need to know is the name of the register_group and the register_name. I used the files debug.py (that is produced by example.py) to find these two names. I looked for 'hot_water' in the debug files and found "REG_GROUP_TEMPERATURES" and "REG_HOT_WATER_TEMPERATURE". Then I tried: print ("hot water temerature " + str(heat_pump.get_register_data_by_register_group_and_name( And indeed that produces the correct value for me. |
Beta Was this translation helpful? Give feedback.
-
Is it possible to read hot water temperature as well in addition to all other metrics?
Beta Was this translation helpful? Give feedback.
All reactions