mirror of
https://github.com/home-assistant/developers.home-assistant.git
synced 2025-07-13 12:26:29 +00:00
Add stub for ACP entity, includes code_format (#18)
* Add stub for ACP entity, includes code_format * Add key pad info
This commit is contained in:
parent
5bb72bc696
commit
698c5423cc
25
docs/entity_alarm_control_panel.md
Normal file
25
docs/entity_alarm_control_panel.md
Normal file
@ -0,0 +1,25 @@
|
||||
---
|
||||
title: Alarm Control Panel Entity
|
||||
sidebar_label: Alarm Control Panel
|
||||
---
|
||||
|
||||
> This entry is incomplete. Contribution welcome.
|
||||
|
||||
## Properties
|
||||
|
||||
> Properties should always only return information from memory and not do I/O (like network requests). Implement `update()` or `async_update()` to fetch data.
|
||||
|
||||
| Name | Type | Default | Description
|
||||
| ---- | ---- | ------- | -----------
|
||||
| code_format | string | `None` | The format of the panel code.
|
||||
|
||||
### Available code formats
|
||||
|
||||
| Value | Description
|
||||
| ----- | -----------
|
||||
| None | No code required.
|
||||
| Number | Code is a number (Shows ten-key pad on frontend).
|
||||
| Any | Code is a string.
|
||||
|
||||
## Methods
|
||||
|
@ -8,6 +8,7 @@
|
||||
],
|
||||
"Entities": [
|
||||
"entity_index",
|
||||
"entity_alarm_control_panel",
|
||||
"entity_binary_sensor",
|
||||
"entity_climate",
|
||||
"entity_cover",
|
||||
|
Loading…
x
Reference in New Issue
Block a user