From 3a0b4979aff1e99b3611812222982d7532bf50b5 Mon Sep 17 00:00:00 2001 From: Michael Ingraham <34340210+meingraham@users.noreply.github.com> Date: Fri, 17 May 2019 14:36:44 -0400 Subject: [PATCH] Updated Buttons and Switches (markdown) --- Buttons-and-Switches.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Buttons-and-Switches.md b/Buttons-and-Switches.md index ade5edf7..51d2161a 100644 --- a/Buttons-and-Switches.md +++ b/Buttons-and-Switches.md @@ -60,15 +60,15 @@ Sends toggle command on switch press (closing the circuit). While pressing the switch (closing the circuit) the button will send `ON` and when released (open circuit) send `OFF` . +> You want to use `SwitchMode 1` when connecting a [toggle switch](https://en.wikipedia.org/wiki/Switch#Toggle_switch) to your device (e.g. a classic light switch). This way the "software switch" will mirror the state of the "hardware switch". +If the real switch is in the "ON" position, the state in Tasmota is `ON` as well. + **`SwitchMode 2`** ```Set switch to inverted follow mode (0 = ON, 1 = OFF)``` While pressing the switch (closing the circuit) the button will send `OFF` and when released (open circuit) send `ON` . -> You want to use `SwitchMode 1` when connecting a [toggle switch](https://en.wikipedia.org/wiki/Switch#Toggle_switch) to your device (e.g. a classic light switch). This way the "software switch" will mirror the state of the "hardware switch". -If the real switch is in the "ON" position, the state in Tasmota is `ON` as well. - **`SwitchMode 3`** ```Set switch to push-button mode (Default 1 = ON, 0 = toggle)```