Hello guys,
I’ve installed the Daikin Residential component from GitHub - rospogrigio/daikin_residential: Cloud control of Daikin devices that are supported by Daikin Residential Controller app. through HACS and I was able to add the entities to my home screen.
Now I’m trying to do some automations like when the inside temperature drops below 17ºC I want the AC to start and then go off when it reaches 25ºC.
I’m able to control it through this
My first integration as follows :
If I try the RUN option, it also does nothing.
`
id: ‘1675952255662’
alias: Ac Quarto liga abaixo dos 17
description: ‘’
trigger:
- type: temperature
platform: device
device_id: 293b86fc41f3e7beb9454d27a94da3b3
entity_id: sensor.ac_quarto_inside_temperature
domain: sensor
below: 17
condition: - condition: device
device_id: 293b86fc41f3e7beb9454d27a94da3b3
domain: climate
entity_id: climate.ac_quarto
type: is_hvac_mode
hvac_mode: ‘off’
action: - device_id: 293b86fc41f3e7beb9454d27a94da3b3
domain: climate
entity_id: climate.ac_quarto
type: set_hvac_mode
hvac_mode: heat
mode: single
`
do you see anything wrong?