core/homeassistant/components/__init__.py

9 lines
349 B
Python
Raw Normal View History

"""Contains components that can be plugged into Home Assistant.
2014-01-05 02:24:30 +00:00
Component design guidelines:
2016-03-08 16:55:57 +00:00
- Each component defines a constant DOMAIN that is equal to its filename.
- Each component that tracks states should create state entity names in the
format "<DOMAIN>.<OBJECT_ID>".
- Each component should publish services only under its own domain.
"""