I have a simple automation i'm trying to get to work and failing. The fan does not trigger on either event and i can't figure out why?
this is my automation i am trying for this. Basically i just want a fan to turn on above a certain temp, then turn off below a certain temp.
`alias: Master Fan At Work
description: ""
triggers:
- type: temperature
device_id: 83194019b4a29731e92a462014143112
entity_id: c72da6384356b6c0d3cf5f63fe125cf1
domain: sensor
trigger: device
id: HIGH_TEMP
above: 70.5 - type: temperature
device_id: 83194019b4a29731e92a462014143112
entity_id: c72da6384356b6c0d3cf5f63fe125cf1
domain: sensor
trigger: device
below: 69
id: FAN_OFF
conditions: []
actions: - choose:
- conditions:
- condition: trigger
id:- HIGH_TEMP
- condition: state
entity_id: sun.sun
state: above_horizon
sequence: - action: remote.send_command
metadata: {}
data:
num_repeats: 1
delay_secs: 0.4
hold_secs: 0
device: Master_Fan
command: fan_2
target:
device_id: 3f57d1f30dee4918031e33f23a005e32
entity_id: remote.broad_remote
- condition: trigger
- conditions:
- choose:
- conditions:
- condition: trigger
id:- FAN_OFF
- condition: state
entity_id: sun.sun
state: above_horizon
sequence: - action: remote.send_command
metadata: {}
data:
num_repeats: 1
delay_secs: 0.4
hold_secs: 0
device: Master_fan
command: fan_off
target:
device_id: 3f57d1f30dee4918031e33f23a005e32
entity_id: remote.broad_remote
mode: single`
- condition: trigger
- conditions: