multiple output states per zone (#12543)

This commit is contained in:
Kit Klein 2020-03-30 08:20:30 -04:00 committed by GitHub
parent 8d8f6b6472
commit 27f9ae5556
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,23 +66,33 @@ The settings UI starts by having you configure the general behavior of each zone
##### Binary Sensor:
**Binary Sensor Type:** The type of sensor connected to the zone.
**Name (optional)** The friendly name for the entity associated with the zone.
**Invert the open/close state:** Inverts the open/closed meaning of a binary sensor circuit. Commonly needed for normally open wired smoke alarm circuits.
##### Digital Sensor:
**Sensor Type:** The type of sensor connected to the zone - either `dht` or `ds18b20`.
**Name (optional)** The friendly name for the entities associated with the zone.
**Poll Interval (optional):** How often in minutes to poll the sensor for updates.
##### Switchable Output:
**Name: (optional)** The friendly name for the entity associated with the zone.
**Output when on:** The state of the switch when activated.
**Pulse Duration (optional):** The duration in ms to pulse the switch once activated.
**Pause between pulses (optional):** The duration in ms to wait between pulses when activated.
**Times to repeat (optional):** The number of times to repeat the pulse each time the switch is activated.
**Configure additional states for this zone:** Selecting "No" will complete configuration for the zone and proceed to options for the next zone. Select "Yes" if you need to create additional output states for this zone.
### YAML Configuration
If you prefer you can utilize a `konnected` section in the `configuration.yaml` file that specifies the Konnected devices on the network and the sensors or actuators attached to them. If using `configuration.yaml` the configuration will be one-time imported when going through the Configuration Flow for the panel. **Note that you must still complete the UI based setup before the integration will be configured and entities created/accessible.**
@ -314,6 +324,10 @@ Konnected runs on an ESP8266 board with the NodeMCU firmware. It is commonly use
## Revision History
### 0.108
- Multiple output states for a zone.
### 0.106
- Added information on configuration and options flow. Mention that alarm panel FW should be updated before connecting.