* Enable more alarm decoder attributes, including chime status and ready status * Expose chime service in the alarm decoder component * Fix line length linting issue * Fix spacing lint issue * Update PR based on reviewer requests * Update based on linting catches * Fix descriptions include from async to sync
71 lines
2.3 KiB
YAML
71 lines
2.3 KiB
YAML
# Describes the format for available alarm control panel services
|
|
|
|
alarm_disarm:
|
|
description: Send the alarm the command for disarm.
|
|
fields:
|
|
entity_id:
|
|
description: Name of alarm control panel to disarm.
|
|
example: 'alarm_control_panel.downstairs'
|
|
code:
|
|
description: An optional code to disarm the alarm control panel with.
|
|
example: 1234
|
|
|
|
alarm_arm_home:
|
|
description: Send the alarm the command for arm home.
|
|
fields:
|
|
entity_id:
|
|
description: Name of alarm control panel to arm home.
|
|
example: 'alarm_control_panel.downstairs'
|
|
code:
|
|
description: An optional code to arm home the alarm control panel with.
|
|
example: 1234
|
|
|
|
alarm_arm_away:
|
|
description: Send the alarm the command for arm away.
|
|
fields:
|
|
entity_id:
|
|
description: Name of alarm control panel to arm away.
|
|
example: 'alarm_control_panel.downstairs'
|
|
code:
|
|
description: An optional code to arm away the alarm control panel with.
|
|
example: 1234
|
|
|
|
alarm_arm_night:
|
|
description: Send the alarm the command for arm night.
|
|
fields:
|
|
entity_id:
|
|
description: Name of alarm control panel to arm night.
|
|
example: 'alarm_control_panel.downstairs'
|
|
code:
|
|
description: An optional code to arm night the alarm control panel with.
|
|
example: 1234
|
|
|
|
alarm_trigger:
|
|
description: Send the alarm the command for trigger.
|
|
fields:
|
|
entity_id:
|
|
description: Name of alarm control panel to trigger.
|
|
example: 'alarm_control_panel.downstairs'
|
|
code:
|
|
description: An optional code to trigger the alarm control panel with.
|
|
example: 1234
|
|
|
|
envisalink_alarm_keypress:
|
|
description: Send custom keypresses to the alarm.
|
|
fields:
|
|
entity_id:
|
|
description: Name of the alarm control panel to trigger.
|
|
example: 'alarm_control_panel.downstairs'
|
|
keypress:
|
|
description: 'String to send to the alarm panel (1-6 characters).'
|
|
example: '*71'
|
|
|
|
alarmdecoder_alarm_toggle_chime:
|
|
description: Send the alarm the toggle chime command.
|
|
fields:
|
|
entity_id:
|
|
description: Name of the alarm control panel to trigger.
|
|
example: 'alarm_control_panel.downstairs'
|
|
code:
|
|
description: A required code to toggle the alarm control panel chime with.
|
|
example: 1234
|