Add persistent notification component (#1844)

This commit is contained in:
Fabian Affolter 2016-06-25 06:43:44 +02:00 committed by Paulus Schoutsen
parent 7a8c5a0709
commit e4b67c9574

View file

@ -0,0 +1,18 @@
"""
A component which is collecting configuration errors.
For more details about this component, please refer to the documentation at
https://home-assistant.io/components/persistent_notification/
"""
DOMAIN = "persistent_notification"
def create(hass, entity, msg):
"""Create a state for an error."""
hass.states.set('{}.{}'.format(DOMAIN, entity), msg)
def setup(hass, config):
"""Setup the persistent notification component."""
return True