Advertisement
energywave

Home Assistant - Tado devices disconnection automation

Feb 26th, 2025 (edited)
566
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.98 KB | Source Code | 0 0
  1.  - id: fdc99982-656b-4729-b499-4d9751458cda
  2.     alias: Clima - Azione - Notifica disconnessione dispositivi Tado
  3.     trace:
  4.       stored_traces: 10
  5.     mode: queued
  6.     triggers:
  7.       - trigger: event
  8.         event_type: state_changed
  9.     variables:
  10.       entity_id: "{{ trigger.event.data.entity_id }}"
  11.       oldstate: "{{ trigger.event.data.old_state.state }}"
  12.       newstate: "{{ trigger.event.data.new_state.state }}"
  13.     conditions:
  14.      # Escludo tutto quel che non è un binary sensor per ottimizzare la velocità di esecuzione
  15.       - "{{ entity_id.startswith('binary_sensor') }}"
  16.       # Accetto solo i binary_sensor di un device tado che indichi lo stato di connettività
  17.       - "{{ is_device_attr(entity_id, 'manufacturer', 'Tado') and states[entity_id].attributes.device_class == 'connectivity' }}"
  18.       # Escludo se il sensore proviene da unknown / unavailable o se è andato in unknown / unavailable
  19.       - "{{ not old_state in ['unknown', 'unavailable'] and not new_state in ['unknown', 'unavailable'] }}"
  20.     actions:
  21.       - variables:
  22.           device_id: "{{ device_id(entity_id) }}"
  23.           device_name: "{{ device_attr(device_id, 'name_by_user') if not is_device_attr(device_id, 'name_by_user', None) else device_attr(device_id, 'name') }}"
  24.           area_name: "{{ area_name(device_id) }}"
  25.           is_online: "{{ (states(entity_id) | default('off')) == 'on' }}"
  26.           event_name: "{{ 'riconnessione' if is_online else 'disconnessione' }}"
  27.           channel_icon: "{{ 'info' if is_online else 'warning' }}"
  28.       - action: script.multinotify
  29.         continue_on_error: true
  30.         data:
  31.           title: "TADO: {{ event_name }} {{ device_name }}"
  32.           message: "{{ event_name }} dispositivo {{ device_name }} in {{ area_name }}"
  33.           notify_app: notify.mobile_app_tel_henrik
  34.           notify_pushover: notify.pushover
  35.           notify_html5: notify.html5_hsozzi_pc
  36.           channel: "{{ channel_icon }}"
  37.           icon: "{{ channel_icon }}"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement