ollo69 / ha-smartthinq-sensors

HomeAssistant custom integration for SmartThinQ LG devices configurable with Lovelace User Interface.
Apache License 2.0
1.17k stars 160 forks source link

Heat pump - Can't change values in automations #825

Open Trainerbert opened 2 weeks ago

Trainerbert commented 2 weeks ago

Describe the bug I can't change the temperature of my heat pump without triggering it manually by hand in the climate control. Also the value is red

Expected behavior Set the value and change it.

Screenshots image image image

Environment details:

image

Dallco commented 5 days ago

Your action is climate set temperature. Firs set your HVAC mode. In this case it is my trigger. This is working code. In this case i set temperature by an input.number but you can use a fixed if you like..

triggers:
  - device_id: d04e7ea84fda86a3f3a683c435bd616f
    domain: climate
    entity_id: 472b88e7c66b2142eaa8411529ed4e7d
    type: hvac_mode_changed
    trigger: device
    to: heat
conditions: []
actions:
  - action: climate.set_temperature
    metadata: {}
    data:
      temperature: "{{ states('input_number.uitvoer_temp_h_p') | float }}"
    target:
      device_id: d04e7ea84fda86a3f3a683c435bd616f
mode: single