From e26b63e2a4081a0f6283e04d5aa57a3a73142e03 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 13 Oct 2015 20:10:51 +0200 Subject: [PATCH] Add manual alarm doc --- .../alarm_control_panel.manual.markdown | 31 +++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 source/components/alarm_control_panel.manual.markdown diff --git a/source/components/alarm_control_panel.manual.markdown b/source/components/alarm_control_panel.manual.markdown new file mode 100644 index 00000000000..ea04b3d4fcc --- /dev/null +++ b/source/components/alarm_control_panel.manual.markdown @@ -0,0 +1,31 @@ +--- +layout: page +title: "Manual alarm support" +description: "Instructions how to integrate manual alarms into Home Assistant." +date: 2015-10-13 19:10 +sidebar: false +comments: false +sharing: true +footer: true +--- + + +This platform enables you to set manual alarms in Home Assistant. + +```yaml +# Example configuration.yaml entry +alarm_control_panel: + platform: manual + name: "HA Alarm" + code: PASSCODE + pending_time: 60 + trigger_time: 120 +``` + +Configuration variables: + +- **name** (*Optional*): The name of the alarm. Default is 'HA Alarm'. +- **code** (*Optional*): If defined, specifies a code to enable or disable the alarm in the frontend. +- **pending_time** (*Optional*): The time in seconds of the pending time before arming the alarm. Default is 60 seconds. +- **trigger_time** (*Optional*): The time in seconds of the trigger time in which the alarm is firing. Default is 120 seconds. +