You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/_components/alarm_control_panel.manual.markdown
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,14 @@ This platform enables you to set manual alarms in Home Assistant.
19
19
# Example configuration.yaml entry
20
20
alarm_control_panel:
21
21
- platform: manual
22
+
name: Home Alarm
23
+
code: 1234
24
+
pending_time: 30
25
+
armed_home:
26
+
pending_time: 0
27
+
triggered:
28
+
pending_time: 20
29
+
trigger_time: 4
22
30
```
23
31
24
32
Configuration variables:
@@ -28,6 +36,10 @@ Configuration variables:
28
36
- **pending_time** (*Optional*): The time in seconds of the pending time before arming the alarm. Default is 60 seconds.
29
37
- **trigger_time** (*Optional*): The time in seconds of the trigger time in which the alarm is firing. Default is 120 seconds.
30
38
- **disarm_after_trigger** (*Optional*): If true, the alarm will automatically disarm after it has been triggered instead of returning to the previous state.
39
+
- **armed_home|armed_away|armed_night|triggered** (*Optional*): State specific settings
40
+
- **pending_time**: State specific pending time override.
41
+
42
+
In the config example above, armed_home state will have no pending time and triggered state will have pending time of 20 second whereas armed_away state will have a default pending time of 30 seconds.
0 commit comments