* Add supported_features to Alarm Control Panel * mark supported_features abstract * Add SF to async_register_entity_service * fix test * Add missing SF SUPPORT_ALARM_ARM_CUSTOM_BYPASS * isort * fix async_register_entity_service * Update alarm_control_panel.py
7 lines
197 B
Python
7 lines
197 B
Python
"""Provides the constants needed for component."""
|
|
|
|
SUPPORT_ALARM_ARM_HOME = 1
|
|
SUPPORT_ALARM_ARM_AWAY = 2
|
|
SUPPORT_ALARM_ARM_NIGHT = 4
|
|
SUPPORT_ALARM_TRIGGER = 8
|
|
SUPPORT_ALARM_ARM_CUSTOM_BYPASS = 16
|