document option added to konnected binary sensors (#6220)

* document  option added to konnected binary sensors

* Update konnected.markdown
This commit is contained in:
Nate Clark 2018-09-12 07:55:16 -04:00 committed by Paulus Schoutsen
parent 1e77e3aea8
commit 810473b692

View File

@ -83,6 +83,11 @@ devices:
description: The name of the device used in the front end. description: The name of the device used in the front end.
required: false required: false
default: automatically generated default: automatically generated
inverse:
type: boolean
description: Inverts the open/closed meaning of a binary sensor circuit. Commonly needed for normally open wired smoke alarm circuits.
required: false
default: false
switches: switches:
description: A list of actuators (on/off switches) connected to the device. See [Konnected Switch](/components/switch.konnected/) for configuration variables. description: A list of actuators (on/off switches) connected to the device. See [Konnected Switch](/components/switch.konnected/) for configuration variables.
required: false required: false
@ -133,6 +138,7 @@ konnected:
- zone: 2 - zone: 2
type: smoke type: smoke
name: 'Bedroom Smoke Detector' name: 'Bedroom Smoke Detector'
inverse: true
- zone: 3 - zone: 3
type: motion type: motion
name: 'Test Motion' name: 'Test Motion'
@ -182,6 +188,9 @@ Konnected runs on an ESP8266 board with the NodeMCU firmware. It is commonly use
### {% linkable_title Revision History %} ### {% linkable_title Revision History %}
#### 0.79
* Added `inverse` configuration option for binary sensors.
#### 0.77 #### 0.77
* Added support for momentary and beep/blink switches. [[#15973](https://github.com/home-assistant/home-assistant/pull/15973)] * Added support for momentary and beep/blink switches. [[#15973](https://github.com/home-assistant/home-assistant/pull/15973)]
* Decouple entity initialization from discovery, enabling devices to recover faster after a Home Assistant reboot. [[#16146](https://github.com/home-assistant/home-assistant/pull/16146)] * Decouple entity initialization from discovery, enabling devices to recover faster after a Home Assistant reboot. [[#16146](https://github.com/home-assistant/home-assistant/pull/16146)]