I think I have everything down for organizing and adding devices into home assistant. I would like to create an automation that turns on my ceiling fan running via a zwave ge smart fan control (light.ge_unknown_type4944_id3034_level_5_0) when the heat via nest thermostat (climate.downstairs) turns on. This is what I have so far
automation:
alias: Turn on fan with heat
initial_state: True
hide_entity: False
trigger:
platform: light
condition:
condition: state
entity_id: climate.downstairs
state: ??????
action:
service: light.turn_on
entity_id: light.ge_unknown_type4944_id3034_level_5_0
data:
brightness: 20
alias: Turn off fan when heat turns off
initial_state: True
hide_entity: False
trigger:
platform: light
condition:
condition: state
entity_id: climate.downstairs
state: ??????
action:
service: light.turn_off
entity_id: light.ge_unknown_type4944_id3034_level_5_0
Any help is appreciated. Thanks!