From ccfde1bd429fc376a327de529c9f5e9f13b2de11 Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Tue, 10 Nov 2020 05:32:46 +0300 Subject: [PATCH] Update gpio.md --- pages/gpio.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pages/gpio.md b/pages/gpio.md index 32fffcd..0fcac96 100644 --- a/pages/gpio.md +++ b/pages/gpio.md @@ -69,8 +69,9 @@ If you don't specify a driver for the channel in the scheme the default driver, | **Input only** | | | | | | `debounce` | `float` | `x >= 0` | `0.1` | [Debounce](https://www.arduino.cc/en/Tutorial/Debounce) time in seconds. `0` for disable debounce | | **Output only** | | | | | -| `switch` | `bool ` | `true` or `false` | `true` | Enables or disables the switch mode on the channel (enabled by default). | +| `switch` | `bool` | `true` or `false` | `true` | Enables or disables the switch mode on the channel (enabled by default). | | `initial` | `nullable bool` | `true`, `false` or `null` | `false` | Defines the initial state of the switch upon boot, `null` for don't make changes (the last one does not supported by generic GPIO) | +| `intverted` | `bool` | `true` or `false` | `false` | Inverts the active logical level | | `pulse` | | | | A section header to define switch pulse configuration | | `delay` | `float` | `X >= 0` | `0.1` | Defines the pulse time in seconds, `0` for disable pulsing | | `min_delay` | `float` | `X >= 0.1` | `0.1` |