Skip to content

Commit e2cb9f5

Browse files
snjoetwMartinHjelmare
authored andcommitted
Update alarm_control_panel.manual.markdown (home-assistant#3371)
1 parent c8f7ae7 commit e2cb9f5

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

source/_components/alarm_control_panel.manual.markdown

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,24 @@ Configuration variables:
2828
- **pending_time** (*Optional*): The time in seconds of the pending time before arming the alarm. Default is 60 seconds.
2929
- **trigger_time** (*Optional*): The time in seconds of the trigger time in which the alarm is firing. Default is 120 seconds.
3030
- **disarm_after_trigger** (*Optional*): If true, the alarm will automatically disarm after it has been triggered instead of returning to the previous state.
31+
- **armed_home|armed_away|armed_night|triggered** (*Optional*): State specific settings
32+
- **pending_time**: State specific pending time override.
33+
34+
In the config example below, 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.
35+
36+
```yaml
37+
# Example configuration.yaml entry
38+
alarm_control_panel:
39+
- platform: manual
40+
name: Home Alarm
41+
code: 1234
42+
pending_time: 30
43+
armed_home:
44+
pending_time: 0
45+
triggered:
46+
pending_time: 20
47+
trigger_time: 4
48+
```
3149
3250
## {% linkable_title Examples %}
3351

0 commit comments

Comments
 (0)