I only have two automations in this configuration.yaml. The error doesn’t appear until I add the 2nd automation ( The doorbell) . I don’t understand the error message telling me where to look for the problem. Could someone explain to me what is wrong with my config and as to how I need to troubleshoot these kind of messages.
# Configure a default setup of Home Assistant (frontend, api, etc)
default_config:
# Text to speech
tts:
- platform: google_translate
group: !include groups.yaml
automation: !include automations.yaml
script: !include scripts.yaml
scene: !include scenes.yaml
binary_sensor:
- platform: wyzesense
device: "/dev/hidraw0"
life360:
# MPH, assuming imperial units.
# If using metric (KPH), the equivalent would be 29.
driving_speed: 18
interval_seconds: 10
max_gps_accuracy: 200
max_update_wait:
minutes: 45
show_as_state:
- driving
- moving
# Set comm error thresholds so first is not logged,
# second is logged as a WARNING, and third and fourth
# are logged as ERRORs.
warning_threshold: 2
error_threshold: 3
# Doorbell Ringing
- alias: 'Doorbell'
trigger:
- platform: state
entity_id: binary_sensor.front_door_ding
to: 'on'
action:
- service: media_player.volume_set
data_template:
entity_id: all
volume_level: 1.0
- service: tts.google_translate_say
entity_id: all
data:
message: 'Doorbell ringing!'
- service: notify.mobile_app_vnote20
data:
message: 'Doorbell ringing!'