From 810473b6921e48e46d0026f264dbe6011893adfa Mon Sep 17 00:00:00 2001 From: Nate Clark Date: Wed, 12 Sep 2018 07:55:16 -0400 Subject: [PATCH] document option added to konnected binary sensors (#6220) * document option added to konnected binary sensors * Update konnected.markdown --- source/_components/konnected.markdown | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/_components/konnected.markdown b/source/_components/konnected.markdown index df50d5abc37..35ed373fd36 100644 --- a/source/_components/konnected.markdown +++ b/source/_components/konnected.markdown @@ -83,6 +83,11 @@ devices: description: The name of the device used in the front end. required: false 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: description: A list of actuators (on/off switches) connected to the device. See [Konnected Switch](/components/switch.konnected/) for configuration variables. required: false @@ -133,6 +138,7 @@ konnected: - zone: 2 type: smoke name: 'Bedroom Smoke Detector' + inverse: true - zone: 3 type: 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 %} +#### 0.79 +* Added `inverse` configuration option for binary sensors. + #### 0.77 * 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)]