First post so please forgive me if I failed at some formatting protocol. I am trying to create an automation to turn on the Daikin airconditioner at 6:45am, set the temp to 20, set the mode to heat and the fan to Mid. Any of the functions will turn it on if off.
When the below automation runs, only the first action happens. If I make 3 automations, 1 for each action, they all work fine. Can someone help me please. The below was writen using the Automation Editor.
# Turn on and set Aircon
- alias: ' Aircon on at 6:45am. Set to 20c.'
trigger:
- at: 06:45
platform: time
condition:
- condition: state
entity_id: binary_sensor.workday_sensor
state: 'on'action:
- data:
entity_id: climate.daikinap33707
temperature: 20
service: climate.set_temperature
- data:
entity_id: climate.daikinap33707
operation_mode: heat
service: climate.set_operation_mode
- data:
entity_id: climate.daikinap33707
fan_mode: Mid
service: climate.set_fan_mode