Zrobiłem automatyzację aby brama się otwierała o 7:20 (z warunkiem jeśli jest zamknięta)
niestety ta automatyzacja się nie uruchamia powodem jest sprawdzanie stanu bramy co jest nie tak?
alias: "otwieranie bramy o7:20"
description: ""
triggers:
- trigger: time
at: "7:20:00"
conditions:
- condition: state
entity_id: binary_sensor.brama_tipo
state: "off"
actions:
- action: switch.turn_on
metadata: {}
data: {}
target:
entity_id: switch.nad_garaz_sterowanie_brama_tipo
- action: notify.mobile_app_sm_a556b_net
metadata: {}
data:
message: brama auta się otwiera
mode: single
taki jest kod ale ja to robiłem dodając automatyzację wybierając opcje tak jak poniżej
'
alias: "otwieranie bramy o 7:20"
description: ""
trigger:
- platform: time
at: "07:20:00"
condition:
- condition: state
entity_id: binary_sensor.brama_tipo
state: "off"
action:
- service: switch.turn_on
target:
entity_id: switch.nad_garaz_sterowanie_brama_tipo
- service: notify.mobile_app_sm_a556b_net
data:
message: "Brama auta się otwiera"
mode: single


