Hi all
Trying to set up some automatons for my A/C (running a Sensibo) but have issues with my config. Error message is Error loading /config/configuration.yaml: while parsing a block mapping in "/config/automations.yaml", line 77, column 3 expected <block end>, but found '<block sequence start>' in "/config/automations.yaml", line 89, column 4
Relevant configuration (within automations.yaml
):
#Sensibo night automation - master bedroom
#Turn on at 6.45pm
- alias: 'Downstairs AC night'
trigger:
- platform: state
entity_id: sensor.master_bedroom_a_c.current_temperature
above: 22
below: 16
condition:
condition: and
conditions:
- condition: state
entity_id: group.all_devices
state: home
- condition: time
after: '16:45:00'
before: '06:00:00'
action:
- service: climate.turn_on
data:
entity_id: climate.master_bedroom_a_c
temperature: 23
operation_mode: auto
fan_mode: auto
swing_mode: fixedTop
#Turn off at 6.00am
- alias: 'Downstairs AC morning'
trigger:
platform: time
at: "06:00:00"
action:
- service: climate.turn_off
data:
entitiy_id: climate.master_bedroom_a_c
Any suggestions?