Yale Connexis Lock Automation - lookup value from external file

This is another I use to notify if it gets jammed


- alias: Notify if Front Door Lock is jammed
  trigger:
    - platform: state
      entity_id: sensor.assa_abloy_yale_conexis_l1_sd_l1000_ch_alarm_type
      to: '9'
    - platform: state
      entity_id: sensor.assa_abloy_yale_conexis_l1_sd_l1000_ch_alarm_type
      to: '17'
    - platform: state
      entity_id: sensor.assa_abloy_yale_conexis_l1_sd_l1000_ch_alarm_type
      to: '23'
    - platform: state
      entity_id: sensor.assa_abloy_yale_conexis_l1_sd_l1000_ch_alarm_type
      to: '26'
  action:
    - service: notify.pushover
      data:
        message: The front door lock is jammed
        title: Home Automation
    - service: notify.alexa_media
      data:
        target:
          - media_player.living_room
        data:
          type: tts
1 Like