Hello everyone,
Have a very stange behavior …
At this point i have made a complete fresh installation of HA with nothing else then alarm thing on it to get right nothing else will affect it.
Following happens:
The mqtt sensor fires.
The automation gets triggerd and condition is working (already checked with dev tools).
The action should calls the service “alarm_control_panel.alarm_trigger” but the alarm will not trigger.
Also when i go to dev tools and call the service directly to my alarmpanel nothing happens.
My code is “the same” as shown in the documentation so i dont know whats worg here ?
Maybe someone can help me out.
Here is my Code:
alarm_control_panel:
- platform: manual_mqtt
name: Alarmanlage
state_topic: alarm/sta
command_topic: alarm/cmd
code: "1603"
code_arm_required: false
armed_home:
pending_time: 0
delay_time: 0
armed_away:
pending_time: 5
delay_time: 2
trigger_time: 0
automation:
- alias: 'alarm_Turverzogerung'
trigger:
- platform: state
entity_id: binary_sensor.alarm_tur
to: "on"
condition:
- condition: state
entity_id: alarm_control_panel.alarmanlage
state: armed_away
action:
service: alarm_control_panel.alarm_trigger
target:
entity_id: alarm_control_panel.alarmanlage
Its like the "same as in the following documentations described:
THANK YOU VERY MUCH !!!