Skip to main content

Alarm Control Panel Entity

An alarm control panel entity controls an alarm. Derive a platform entity from homeassistant.components.alarm_control_panel.AlarmControlPanelEntity.

Properties

tip

Properties should always only return information from memory and not do I/O (like network requests). Implement update() or async_update() to fetch data.

NameTypeDefaultDescription
statestr | NoneRequiredOne of the states listed in the states.
code_arm_requiredboolTrueWhether the code is required for arm actions.
code_formatCodeFormat | NoneNoneOne of the states listed in the code formats section.
changed_bystr | NoneNoneLast change triggered by.

States

ValueDescription
NoneUnknown state.
disarmedThe alarm is disarmed (off).
armed_homeThe alarm is armed in home mode.
armed_awayThe alarm is armed in away mode.
armed_nightThe alarm is armed in night mode.
armed_vacationThe alarm is armed in vacation mode.
armed_custom_bypass The alarm is armed in bypass mode.
pendingThe alarm is pending (towards triggered).
armingThe alarm is arming.
disarmingThe alarm is disarming.
triggeredThe alarm is triggered.

Supported Features

Supported features are defined by using values in the AlarmControlPanelEntityFeature enum and are combined using the bitwise or (|) operator.

ConstantDescription
AlarmControlPanelEntityFeature.ARM_AWAYThe alarm supports arming in away mode.
AlarmControlPanelEntityFeature.ARM_CUSTOM_BYPASSThe alarm supports arming with a bypass.
AlarmControlPanelEntityFeature.ARM_HOMEThe alarm supports arming in home mode.
AlarmControlPanelEntityFeature.ARM_NIGHTThe alarm supports arming in night mode.
AlarmControlPanelEntityFeature.ARM_VACATIONThe alarm supports arming in vacation mode.
AlarmControlPanelEntityFeature.TRIGGERThe alarm can be triggered remotely.

Code Formats

Supported code formats are defined by using values in the CodeFormat enum.

ValueDescription
NoneNo code required.
CodeFormat.NUMBERCode is a number (Shows ten-key pad on frontend).
CodeFormat.TEXTCode is a string.

Methods

Alarm Disarm

Send disarm command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_disarm(self, code=None) -> None:
"""Send disarm command."""

async def async_alarm_disarm(self, code=None) -> None:
"""Send disarm command."""

Alarm Arm Home

Send arm home command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_arm_home(self, code=None) -> None:
"""Send arm home command."""

async def async_alarm_arm_home(self, code=None) -> None:
"""Send arm home command."""

Alarm Arm Away

Send arm away command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_arm_away(self, code=None) -> None:
"""Send arm away command."""

async def async_alarm_arm_away(self, code=None) -> None:
"""Send arm away command."""

Alarm Arm Night

Send arm night command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_arm_night(self, code=None) -> None:
"""Send arm night command."""

async def async_alarm_arm_night(self, code=None) -> None:
"""Send arm night command."""

Alarm Arm Vacation

Send arm vacation command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_arm_vacation(self, code=None) -> None:
"""Send arm vacation command."""

async def async_alarm_arm_vacation(self, code=None) -> None:
"""Send arm vacation command."""

Alarm Trigger

Send alarm trigger command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_trigger(self, code=None) -> None:
"""Send alarm trigger command."""

async def async_alarm_trigger(self, code=None) -> None:
"""Send alarm trigger command."""

Alarm Custom Bypass

Send arm custom bypass command.

class MyAlarm(AlarmControlPanelEntity):
# Implement one of these methods.

def alarm_arm_custom_bypass(self, code=None) -> None:
"""Send arm custom bypass command."""

async def async_alarm_arm_custom_bypass(self, code=None) -> None:
"""Send arm custom bypass command."""