Add link to doc
parent
6064fffc8e
commit
80e4f2f51f
|
@ -1,10 +1,10 @@
|
||||||
"""
|
"""
|
||||||
homeassistant.components.simple_alarm
|
homeassistant.components.simple_alarm
|
||||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
|
Intruder alerts component.
|
||||||
|
|
||||||
Provides a simple alarm feature:
|
For more details about this component, please refer to the documentation at
|
||||||
- flash a light when a known device comes home
|
https://home-assistant.io/components/simple_alarm.html
|
||||||
- flash a light red if a light turns on while there is no one home.
|
|
||||||
"""
|
"""
|
||||||
import logging
|
import logging
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ DOMAIN = "simple_alarm"
|
||||||
DEPENDENCIES = ['group', 'device_tracker', 'light']
|
DEPENDENCIES = ['group', 'device_tracker', 'light']
|
||||||
|
|
||||||
# Attribute to tell which light has to flash whem a known person comes home
|
# Attribute to tell which light has to flash whem a known person comes home
|
||||||
# If ommitted will flash all.
|
# If omitted will flash all.
|
||||||
CONF_KNOWN_LIGHT = "known_light"
|
CONF_KNOWN_LIGHT = "known_light"
|
||||||
|
|
||||||
# Attribute to tell which light has to flash whem an unknown person comes home
|
# Attribute to tell which light has to flash whem an unknown person comes home
|
||||||
|
|
Loading…
Reference in New Issue