So I updated to 0.28 and I keep getting this in the log.
16-09-11 18:07:45 homeassistant.bootstrap: Error during setup of component automation
It was working before that. Here is the automation part of my config.
automation:
alias: Turn on light when sun sets
trigger:
platform: sun
event: sunset
condition:
condition: state
entity_id: input_boolean.slight
state: 'on'
action:
service: homeassistant.turn_on
entity_id: switch.f_lamp
automation 2:
alias: fan on
trigger:
platform: sun
event: sunset
offset: '-01:00:00'
condition:
condition: state
entity_id: input_boolean.sfan
state: 'on'
action:
service: homeassistant.turn_on
entity_id: switch.fan
automation 3:
alias: fan off
trigger:
platform: sun
event: sunset
offset: '+02:00:00'
condition:
condition: state
entity_id: input_boolean.sfan
state: 'on'
action:
service: homeassistant.turn_off
entity_id: switch.fan
automation 4:
alias: litter
trigger:
platform: sun
event: sunset
offset: '-05:00:00'
condition:
condition: time
weekday:
- sun
- wed
action:
service: persistent_notification.create
data:
message: "Do cat litter"
title: "Reminder"
automation 5:
alias: “6AM alarm”
trigger:
platform: time
after: '05:58:00'
condition:
condition: state
entity_id: input_select.nalarm
state: '6AM'
action:
service: switch.turn_on
entity_id: switch.nathans_bebroom
automation 6:
alias: “7AM alarm”
trigger:
platform: time
after: '06:58:00'
condition:
condition: state
entity_id: input_select.nalarm
state: '7AM'
action:
service: switch.turn_on
entity_id: switch.nathans_bebroom
automation 7:
alias: “8AM alarm”
trigger:
platform: time
after: '07:58:00'
condition:
condition: state
entity_id: input_select.nalarm
state: '8AM'
action:
service: switch.turn_on
entity_id: switch.nathans_bebroom
automation 8:
alias: “10AM alarm”
trigger:
platform: time
after: '09:58:00'
condition:
condition: state
entity_id: input_select.nalarm
state: '10AM'
action:
service: switch.turn_on
entity_id: switch.nathans_bebroom
automation 9:
alias: "midlights"
trigger:
platform: time
after: '23:59:00'
condition:
condition: state
enttity_id: input_boolean.mlights
action:
service: scene.turn_on
entity_id: scene.mlights
Thanks
Edit: formating