From bf204314b133aa50ad1932c10015a7eb9b66bc2a Mon Sep 17 00:00:00 2001 From: Matt N Date: Sat, 26 Nov 2016 09:03:22 -0800 Subject: [PATCH] Delete removed simple_alarm component docs (#1498) This was superseded by /source/_cookbook/python_component_simple_alarm.markdown --- source/_components/simple_alarm.markdown | 32 ------------------------ 1 file changed, 32 deletions(-) delete mode 100644 source/_components/simple_alarm.markdown diff --git a/source/_components/simple_alarm.markdown b/source/_components/simple_alarm.markdown deleted file mode 100644 index 1a3002dc68b..00000000000 --- a/source/_components/simple_alarm.markdown +++ /dev/null @@ -1,32 +0,0 @@ ---- -layout: page -title: "Intruder Alerts" -description: "Instructions how to receive intruder alerts from Home Assistant." -date: 2015-01-20 22:36 -sidebar: true -comments: false -sharing: true -footer: true -logo: home-assistant.png -ha_category: Alarm ---- - - -The component `simple_alarm` is capable of detecting intruders. It does so by checking if lights are being turned on while there is no one at home. When this happens it will turn the lights red, flash them for 30 seconds and send a message via [the notify component]({{site_root}}/components/notify/). It will also flash a specific light when a known person comes home. - -This component depends on the components [device_tracker]({{site_root}}/components/device_tracker/) and [light]({{site_root}}/components/light/) being setup. - -To set it up, add the following lines to your `configuration.yaml` file: - -```yaml -simple_alarm: -# Example configuration.yaml entry - known_light: light.Bowl - unknown_light: group.living_room -``` - -Configuration variables: - -- **known_light** (*Optional*): Which light/light group has to flash when a known device comes home. -- **unknown_light** (*Optional*): Which light/light group has to flash red when light turns on while no one home. -