Hello!
In case spot price goes up/down, I’d like to set a new value to my heat pump (IVT Greenline HT) to get heating on with low energy price.
I’m using Husdata E66 and I’m getting all the values from my heat pump to HA, so that way all is good. There is MQTT integration to that.
I have a parameter value input_number.heatpump_on
, where I have define what is the value I’d like to set to the heat pump. Then I have entity_id called climate.heat_set_1_curvel
, where I want to set a new value from my heatpump_on. Here is my action, what I have tried - no errors and nothing happening. What is wrong here? I’m wondering if I should use somehow MQTT integration to publish a new payload to my heat pump(?). Any hints/tips are more than welcome.
condition: []
action:
- service: input_number.set_value
data:
value: '{{ states(''input_number.heatpump_on'') | float(0) }}'
target:
entity_id: climate.heat_set_1_curvel
mode: single