2018-12-28 15:35:19 +00:00
|
|
|
/*
|
2019-10-27 10:13:24 +00:00
|
|
|
support_switch.ino - switch support for Tasmota
|
2018-12-28 15:35:19 +00:00
|
|
|
|
2019-12-31 13:23:34 +00:00
|
|
|
Copyright (C) 2020 Theo Arends
|
2018-12-28 15:35:19 +00:00
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-03-14 12:13:33 +00:00
|
|
|
#define SWITCH_V3
|
|
|
|
#ifdef SWITCH_V3
|
2018-12-28 15:35:19 +00:00
|
|
|
/*********************************************************************************************\
|
|
|
|
* Switch support with input filter
|
|
|
|
*
|
|
|
|
* Inspired by (https://github.com/OLIMEX/olimex-iot-firmware-esp8266/blob/master/olimex/user/user_switch2.c)
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-03-31 10:59:04 +01:00
|
|
|
const uint8_t SWITCH_PROBE_INTERVAL = 10; // Time in milliseconds between switch input probe
|
2020-06-02 21:17:20 +01:00
|
|
|
const uint8_t SWITCH_FAST_PROBE_INTERVAL =2;// Time in milliseconds between switch input probe for AC detection
|
|
|
|
const uint8_t AC_PERIOD = (20 + SWITCH_FAST_PROBE_INTERVAL - 1) / SWITCH_FAST_PROBE_INTERVAL; // Duration of an AC wave in probe intervals
|
2018-12-28 15:35:19 +00:00
|
|
|
|
|
|
|
#include <Ticker.h>
|
|
|
|
|
|
|
|
Ticker TickerSwitch;
|
|
|
|
|
2019-08-17 15:19:58 +01:00
|
|
|
struct SWITCH {
|
|
|
|
unsigned long debounce = 0; // Switch debounce timer
|
|
|
|
uint16_t no_pullup_mask = 0; // Switch pull-up bitmask flags
|
|
|
|
uint8_t state[MAX_SWITCHES] = { 0 };
|
|
|
|
uint8_t last_state[MAX_SWITCHES]; // Last wall switch states
|
|
|
|
uint8_t hold_timer[MAX_SWITCHES] = { 0 }; // Timer for wallswitch push button hold
|
|
|
|
uint8_t virtual_state[MAX_SWITCHES]; // Virtual switch states
|
2020-06-02 21:17:20 +01:00
|
|
|
uint8_t first_change = 0;
|
2019-08-17 15:19:58 +01:00
|
|
|
uint8_t present = 0;
|
|
|
|
} Switch;
|
2018-12-28 15:35:19 +00:00
|
|
|
|
|
|
|
/********************************************************************************************/
|
|
|
|
|
|
|
|
void SwitchPullupFlag(uint16 switch_bit)
|
|
|
|
{
|
2019-08-17 15:19:58 +01:00
|
|
|
bitSet(Switch.no_pullup_mask, switch_bit);
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 13:53:35 +00:00
|
|
|
void SwitchSetVirtual(uint32_t index, uint8_t state)
|
2018-12-28 15:35:19 +00:00
|
|
|
{
|
2020-02-06 13:53:35 +00:00
|
|
|
Switch.virtual_state[index] = state;
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 13:53:35 +00:00
|
|
|
uint8_t SwitchGetVirtual(uint32_t index)
|
2018-12-28 15:35:19 +00:00
|
|
|
{
|
2020-02-06 13:53:35 +00:00
|
|
|
return Switch.virtual_state[index];
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
|
2020-02-06 13:53:35 +00:00
|
|
|
uint8_t SwitchLastState(uint32_t index)
|
2018-12-28 15:35:19 +00:00
|
|
|
{
|
2020-02-06 13:53:35 +00:00
|
|
|
return Switch.last_state[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
bool SwitchState(uint32_t index)
|
|
|
|
{
|
|
|
|
uint32_t switchmode = Settings.switchmode[index];
|
|
|
|
return ((FOLLOW_INV == switchmode) ||
|
|
|
|
(PUSHBUTTON_INV == switchmode) ||
|
|
|
|
(PUSHBUTTONHOLD_INV == switchmode) ||
|
|
|
|
(FOLLOWMULTI_INV == switchmode) ||
|
2020-03-14 13:54:11 +00:00
|
|
|
(PUSHHOLDMULTI_INV == switchmode) ||
|
|
|
|
(PUSHON_INV == switchmode)
|
2020-02-06 13:53:35 +00:00
|
|
|
) ^ Switch.last_state[index];
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************/
|
|
|
|
|
|
|
|
void SwitchProbe(void)
|
|
|
|
{
|
2019-01-07 09:15:00 +00:00
|
|
|
if (uptime < 4) { return; } // Block GPIO for 4 seconds after poweron to workaround Wemos D1 / Obi RTS circuit
|
|
|
|
|
2020-06-02 21:17:20 +01:00
|
|
|
uint8_t state_filter;
|
|
|
|
uint8_t debounce_flags = Settings.switch_debounce % 10;
|
|
|
|
uint8_t force_high = debounce_flags &1; // 51, 101, 151 etc
|
|
|
|
uint8_t force_low = debounce_flags &2; // 52, 102, 152 etc
|
|
|
|
uint8_t ac_detect = debounce_flags == 9;
|
|
|
|
uint8_t switch_probe_interval;
|
|
|
|
uint8_t first_change = Switch.first_change;
|
|
|
|
|
|
|
|
if (ac_detect) {
|
|
|
|
switch_probe_interval = SWITCH_FAST_PROBE_INTERVAL;
|
|
|
|
if (Settings.switch_debounce < 2 * AC_PERIOD * SWITCH_FAST_PROBE_INTERVAL + 9) {
|
|
|
|
state_filter = 2 * AC_PERIOD;
|
|
|
|
} else if (Settings.switch_debounce > (0x7f - 2 * AC_PERIOD) * SWITCH_FAST_PROBE_INTERVAL) {
|
|
|
|
state_filter = 0x7f;
|
|
|
|
} else {
|
|
|
|
state_filter = (Settings.switch_debounce - 9) / SWITCH_FAST_PROBE_INTERVAL;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
switch_probe_interval = SWITCH_PROBE_INTERVAL;
|
|
|
|
state_filter = Settings.switch_debounce / SWITCH_PROBE_INTERVAL; // 5, 10, 15
|
|
|
|
}
|
2018-12-30 13:04:32 +00:00
|
|
|
|
2019-06-30 15:44:36 +01:00
|
|
|
for (uint32_t i = 0; i < MAX_SWITCHES; i++) {
|
2020-04-27 11:54:07 +01:00
|
|
|
if (PinUsed(GPIO_SWT1, i)) {
|
2019-01-07 09:15:00 +00:00
|
|
|
// Olimex user_switch2.c code to fix 50Hz induced pulses
|
2020-04-26 16:33:27 +01:00
|
|
|
if (1 == digitalRead(Pin(GPIO_SWT1, i))) {
|
2019-01-07 09:15:00 +00:00
|
|
|
|
2020-06-02 21:17:20 +01:00
|
|
|
if (ac_detect) { // Enabled with SwitchDebounce x9
|
|
|
|
Switch.state[i] |= 0x80;
|
|
|
|
if (Switch.state[i] > 0x80) {
|
|
|
|
Switch.state[i]--;
|
|
|
|
if (0x80 == Switch.state[i]) {
|
|
|
|
Switch.virtual_state[i] = 0;
|
|
|
|
Switch.first_change = false;
|
|
|
|
}
|
2018-12-30 13:04:32 +00:00
|
|
|
}
|
2020-06-02 21:17:20 +01:00
|
|
|
} else {
|
2018-12-30 13:04:32 +00:00
|
|
|
|
2020-06-02 21:17:20 +01:00
|
|
|
if (force_high) { // Enabled with SwitchDebounce x1
|
|
|
|
if (1 == Switch.virtual_state[i]) {
|
|
|
|
Switch.state[i] = state_filter; // With noisy input keep current state 1 unless constant 0
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Switch.state[i] < state_filter) {
|
|
|
|
Switch.state[i]++;
|
|
|
|
if (state_filter == Switch.state[i]) {
|
|
|
|
Switch.virtual_state[i] = 1;
|
|
|
|
}
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2019-01-07 09:15:00 +00:00
|
|
|
}
|
|
|
|
} else {
|
2018-12-30 13:04:32 +00:00
|
|
|
|
2020-06-02 21:17:20 +01:00
|
|
|
if (ac_detect) { // Enabled with SwitchDebounce x9
|
|
|
|
/*
|
|
|
|
* Moes MS-104B and similar devices using an AC detection circuitry
|
|
|
|
* on their switch inputs generating an ~4 ms long low pulse every
|
|
|
|
* AC wave. We start the time measurement on the falling edge.
|
|
|
|
*
|
|
|
|
* state: bit7: previous state, bit6..0: counter
|
|
|
|
*/
|
|
|
|
if (Switch.state[i] & 0x80) {
|
|
|
|
Switch.state[i] &= 0x7f;
|
|
|
|
if (Switch.state[i] < state_filter - 2 * AC_PERIOD) {
|
|
|
|
Switch.state[i] += 2 * AC_PERIOD;
|
|
|
|
} else {
|
|
|
|
Switch.state[i] = state_filter;
|
|
|
|
Switch.virtual_state[i] = 1;
|
|
|
|
if (first_change) {
|
|
|
|
Switch.last_state[i] = 1;
|
|
|
|
Switch.first_change = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (Switch.state[i] > 0x00) {
|
|
|
|
Switch.state[i]--;
|
|
|
|
if (0x00 == Switch.state[i]) {
|
|
|
|
Switch.virtual_state[i] = 0;
|
|
|
|
Switch.first_change = false;
|
|
|
|
}
|
|
|
|
}
|
2018-12-30 13:04:32 +00:00
|
|
|
}
|
2020-06-02 21:17:20 +01:00
|
|
|
} else {
|
2018-12-30 13:04:32 +00:00
|
|
|
|
2020-06-02 21:17:20 +01:00
|
|
|
if (force_low) { // Enabled with SwitchDebounce x2
|
|
|
|
if (0 == Switch.virtual_state[i]) {
|
|
|
|
Switch.state[i] = 0; // With noisy input keep current state 0 unless constant 1
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Switch.state[i] > 0) {
|
|
|
|
Switch.state[i]--;
|
|
|
|
if (0 == Switch.state[i]) {
|
|
|
|
Switch.virtual_state[i] = 0;
|
|
|
|
}
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-02 21:17:20 +01:00
|
|
|
TickerSwitch.attach_ms(switch_probe_interval, SwitchProbe); // Re-arm as core 2.3.0 does only support ONCE mode
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void SwitchInit(void)
|
|
|
|
{
|
2020-06-02 21:17:20 +01:00
|
|
|
uint8_t ac_detect = Settings.switch_debounce % 10 == 9;
|
|
|
|
|
2019-08-17 15:19:58 +01:00
|
|
|
Switch.present = 0;
|
2019-06-30 15:44:36 +01:00
|
|
|
for (uint32_t i = 0; i < MAX_SWITCHES; i++) {
|
2019-08-17 15:19:58 +01:00
|
|
|
Switch.last_state[i] = 1; // Init global to virtual switch state;
|
2020-04-27 11:54:07 +01:00
|
|
|
if (PinUsed(GPIO_SWT1, i)) {
|
2019-08-17 15:19:58 +01:00
|
|
|
Switch.present++;
|
2020-04-26 16:33:27 +01:00
|
|
|
pinMode(Pin(GPIO_SWT1, i), bitRead(Switch.no_pullup_mask, i) ? INPUT : ((16 == Pin(GPIO_SWT1, i)) ? INPUT_PULLDOWN_16 : INPUT_PULLUP));
|
2020-06-02 21:17:20 +01:00
|
|
|
if (ac_detect) {
|
|
|
|
Switch.state[i] = 0x80 + 2 * AC_PERIOD;
|
|
|
|
Switch.last_state[i] = 0; // Will set later in the debouncing code
|
|
|
|
} else {
|
|
|
|
Switch.last_state[i] = digitalRead(Pin(GPIO_SWT1, i)); // Set global now so doesn't change the saved power state on first switch check
|
|
|
|
}
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2019-08-17 15:19:58 +01:00
|
|
|
Switch.virtual_state[i] = Switch.last_state[i];
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2020-06-02 21:17:20 +01:00
|
|
|
if (Switch.present) {
|
|
|
|
if (ac_detect) {
|
|
|
|
TickerSwitch.attach_ms(SWITCH_FAST_PROBE_INTERVAL, SwitchProbe);
|
|
|
|
Switch.first_change = true;
|
|
|
|
} else {
|
|
|
|
TickerSwitch.attach_ms(SWITCH_PROBE_INTERVAL, SwitchProbe);
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*********************************************************************************************\
|
|
|
|
* Switch handler
|
|
|
|
\*********************************************************************************************/
|
|
|
|
|
2019-01-28 13:08:33 +00:00
|
|
|
void SwitchHandler(uint8_t mode)
|
2018-12-28 15:35:19 +00:00
|
|
|
{
|
2019-01-07 11:38:47 +00:00
|
|
|
if (uptime < 4) { return; } // Block GPIO for 4 seconds after poweron to workaround Wemos D1 / Obi RTS circuit
|
|
|
|
|
2018-12-28 15:35:19 +00:00
|
|
|
uint16_t loops_per_second = 1000 / Settings.switch_debounce;
|
|
|
|
|
2019-06-30 15:44:36 +01:00
|
|
|
for (uint32_t i = 0; i < MAX_SWITCHES; i++) {
|
2020-04-27 11:54:07 +01:00
|
|
|
if (PinUsed(GPIO_SWT1, i) || (mode)) {
|
2020-01-15 12:05:00 +00:00
|
|
|
uint8_t button = Switch.virtual_state[i];
|
|
|
|
uint8_t switchflag = POWER_TOGGLE +1;
|
2018-12-28 15:35:19 +00:00
|
|
|
|
2020-08-04 21:53:44 +01:00
|
|
|
if (Switch.hold_timer[i] & (((Settings.switchmode[i] == PUSHHOLDMULTI) | (Settings.switchmode[i] == PUSHHOLDMULTI_INV)) ? 0x3F: 0xFF)) {
|
2019-08-17 15:19:58 +01:00
|
|
|
Switch.hold_timer[i]--;
|
2020-08-04 21:53:44 +01:00
|
|
|
if ((Switch.hold_timer[i] & 0x3F) == loops_per_second * Settings.param[P_HOLD_TIME] / 25) {
|
2020-05-19 14:52:10 +01:00
|
|
|
if ((Settings.switchmode[i] == PUSHHOLDMULTI) & (NOT_PRESSED == Switch.last_state[i])) {
|
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_INCREMENT); // Execute command via MQTT
|
|
|
|
}
|
|
|
|
if ((Settings.switchmode[i] == PUSHHOLDMULTI_INV) & (PRESSED == Switch.last_state[i])) {
|
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_INCREMENT); // Execute command via MQTT
|
|
|
|
}
|
|
|
|
}
|
2020-08-04 21:53:44 +01:00
|
|
|
if (0 == (Switch.hold_timer[i] & (((Settings.switchmode[i] == PUSHHOLDMULTI) | (Settings.switchmode[i] == PUSHHOLDMULTI_INV)) ? 0x3F: 0xFF))) {
|
2020-01-15 12:05:00 +00:00
|
|
|
switch (Settings.switchmode[i]) {
|
|
|
|
case TOGGLEMULTI:
|
|
|
|
switchflag = POWER_TOGGLE; // Toggle after hold
|
|
|
|
break;
|
|
|
|
case FOLLOWMULTI:
|
|
|
|
switchflag = button &1; // Follow wall switch state after hold
|
|
|
|
break;
|
|
|
|
case FOLLOWMULTI_INV:
|
|
|
|
switchflag = ~button &1; // Follow inverted wall switch state after hold
|
|
|
|
break;
|
2020-01-25 10:22:28 +00:00
|
|
|
case PUSHHOLDMULTI:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (NOT_PRESSED == button) {
|
2020-01-25 10:22:28 +00:00
|
|
|
Switch.hold_timer[i] = loops_per_second * Settings.param[P_HOLD_TIME] / 25;
|
2020-01-28 14:10:23 +00:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_INCREMENT); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
} else {
|
2020-08-04 21:53:44 +01:00
|
|
|
Switch.hold_timer[i]= 0;
|
2020-01-25 10:22:28 +00:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_CLEAR); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
}
|
2020-02-06 13:53:35 +00:00
|
|
|
break;
|
|
|
|
case PUSHHOLDMULTI_INV:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (PRESSED == button) {
|
2020-01-25 10:22:28 +00:00
|
|
|
Switch.hold_timer[i] = loops_per_second * Settings.param[P_HOLD_TIME] / 25;
|
2020-01-28 14:10:23 +00:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_INCREMENT); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
} else {
|
2020-08-04 21:53:44 +01:00
|
|
|
Switch.hold_timer[i]= 0;
|
2020-01-25 10:22:28 +00:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_CLEAR); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
}
|
2020-02-06 13:53:35 +00:00
|
|
|
break;
|
2020-01-15 12:05:00 +00:00
|
|
|
default:
|
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_HOLD); // Execute command via MQTT
|
|
|
|
break;
|
|
|
|
}
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-14 12:13:33 +00:00
|
|
|
if (button != Switch.last_state[i]) { // This implies if ((PRESSED == button) then (NOT_PRESSED == Switch.last_state[i]))
|
2018-12-28 15:35:19 +00:00
|
|
|
switch (Settings.switchmode[i]) {
|
|
|
|
case TOGGLE:
|
2020-01-15 12:05:00 +00:00
|
|
|
case PUSHBUTTON_TOGGLE:
|
2019-09-04 11:20:04 +01:00
|
|
|
switchflag = POWER_TOGGLE; // Toggle
|
2018-12-28 15:35:19 +00:00
|
|
|
break;
|
|
|
|
case FOLLOW:
|
|
|
|
switchflag = button &1; // Follow wall switch state
|
|
|
|
break;
|
|
|
|
case FOLLOW_INV:
|
|
|
|
switchflag = ~button &1; // Follow inverted wall switch state
|
|
|
|
break;
|
|
|
|
case PUSHBUTTON:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (PRESSED == button) {
|
2019-09-04 11:20:04 +01:00
|
|
|
switchflag = POWER_TOGGLE; // Toggle with pushbutton to Gnd
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUSHBUTTON_INV:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (NOT_PRESSED == button) {
|
2019-09-04 11:20:04 +01:00
|
|
|
switchflag = POWER_TOGGLE; // Toggle with releasing pushbutton from Gnd
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUSHBUTTONHOLD:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (PRESSED == button) {
|
2020-03-01 09:42:59 +00:00
|
|
|
Switch.hold_timer[i] = loops_per_second * Settings.param[P_HOLD_TIME] / 10; // Start timer on button press
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2020-03-14 12:13:33 +00:00
|
|
|
if ((NOT_PRESSED == button) && (Switch.hold_timer[i])) {
|
2020-03-01 09:42:59 +00:00
|
|
|
Switch.hold_timer[i] = 0; // Button released and hold timer not expired : stop timer...
|
2020-03-08 12:32:20 +00:00
|
|
|
switchflag = POWER_TOGGLE; // ...and Toggle
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUSHBUTTONHOLD_INV:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (NOT_PRESSED == button) {
|
2020-03-08 12:32:20 +00:00
|
|
|
Switch.hold_timer[i] = loops_per_second * Settings.param[P_HOLD_TIME] / 10; // Start timer on button press...
|
|
|
|
}
|
2020-03-14 12:13:33 +00:00
|
|
|
if ((PRESSED == button) && (Switch.hold_timer[i])) {
|
2020-03-08 12:32:20 +00:00
|
|
|
Switch.hold_timer[i] = 0; // Button released and hold timer not expired : stop timer.
|
|
|
|
switchflag = POWER_TOGGLE; // ...and Toggle
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
break;
|
2020-01-15 12:05:00 +00:00
|
|
|
case TOGGLEMULTI:
|
|
|
|
case FOLLOWMULTI:
|
|
|
|
case FOLLOWMULTI_INV:
|
|
|
|
if (Switch.hold_timer[i]) {
|
|
|
|
Switch.hold_timer[i] = 0;
|
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_HOLD); // Execute command via MQTT
|
|
|
|
} else {
|
|
|
|
Switch.hold_timer[i] = loops_per_second / 2; // 0.5 second multi press window
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2020-01-15 12:05:00 +00:00
|
|
|
break;
|
2020-01-25 10:22:28 +00:00
|
|
|
case PUSHHOLDMULTI:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (NOT_PRESSED == button) {
|
2020-08-04 21:53:44 +01:00
|
|
|
if ((Switch.hold_timer[i] & 0x3F) != 0) {
|
|
|
|
Switch.hold_timer[i] = ((Switch.hold_timer[i] & 0xc0) == 0x40) ? 0x80 : 0;
|
2020-01-25 10:22:28 +00:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_INV); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
}
|
2020-05-19 14:52:10 +01:00
|
|
|
} else {
|
2020-08-04 21:53:44 +01:00
|
|
|
if ((Switch.hold_timer[i] & 0x3F) > loops_per_second * Settings.param[P_HOLD_TIME] / 25) {
|
|
|
|
if((Switch.hold_timer[i] & 0xC0) != 0x80) {
|
|
|
|
Switch.hold_timer[i]= 0x40;
|
|
|
|
switchflag = POWER_TOGGLE; // Toggle with pushbutton
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_100); // Execute command via MQTT
|
|
|
|
Switch.hold_timer[i]= 0;
|
|
|
|
}
|
2020-05-19 14:52:10 +01:00
|
|
|
} else {
|
2020-08-04 21:53:44 +01:00
|
|
|
Switch.hold_timer[i]= 0;
|
2020-05-19 14:52:10 +01:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_RELEASE); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
}
|
2020-02-06 13:53:35 +00:00
|
|
|
}
|
2020-08-04 21:53:44 +01:00
|
|
|
Switch.hold_timer[i] = (Switch.hold_timer[i] & 0xC0) | loops_per_second * Settings.param[P_HOLD_TIME] / 10;
|
2020-01-25 10:22:28 +00:00
|
|
|
break;
|
|
|
|
case PUSHHOLDMULTI_INV:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (PRESSED == button) {
|
2020-08-04 21:53:44 +01:00
|
|
|
if ((Switch.hold_timer[i] & 0x3F) != 0) {
|
|
|
|
Switch.hold_timer[i] = ((Switch.hold_timer[i] & 0xc0) == 0x40) ? 0x80 : 0;
|
2020-02-06 13:53:35 +00:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_INV); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
}
|
2020-05-19 14:52:10 +01:00
|
|
|
} else {
|
2020-08-04 21:53:44 +01:00
|
|
|
if ((Switch.hold_timer[i] & 0x3F)> loops_per_second * Settings.param[P_HOLD_TIME] / 25) {
|
|
|
|
if((Switch.hold_timer[i] & 0xC0) != 0x80) {
|
|
|
|
Switch.hold_timer[i]= 0x40;
|
|
|
|
switchflag = POWER_TOGGLE; // Toggle with pushbutton
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_100); // Execute command via MQTT
|
|
|
|
Switch.hold_timer[i]= 0;
|
|
|
|
}
|
2020-05-19 14:52:10 +01:00
|
|
|
} else {
|
2020-08-04 21:53:44 +01:00
|
|
|
Switch.hold_timer[i]= 0;
|
2020-05-19 14:52:10 +01:00
|
|
|
SendKey(KEY_SWITCH, i +1, POWER_RELEASE); // Execute command via MQTT
|
2020-03-14 12:13:33 +00:00
|
|
|
}
|
2020-01-25 10:22:28 +00:00
|
|
|
}
|
2020-08-04 21:53:44 +01:00
|
|
|
Switch.hold_timer[i] = (Switch.hold_timer[i] & 0xC0) | loops_per_second * Settings.param[P_HOLD_TIME] / 10;
|
2020-01-25 10:22:28 +00:00
|
|
|
break;
|
2020-03-14 10:41:57 +00:00
|
|
|
case PUSHON:
|
2020-03-14 12:13:33 +00:00
|
|
|
if (PRESSED == button) {
|
|
|
|
switchflag = POWER_ON; // Power ON with pushbutton to Gnd
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case PUSHON_INV:
|
|
|
|
if (NOT_PRESSED == button) {
|
|
|
|
switchflag = POWER_ON; // Power ON with releasing pushbutton from Gnd
|
|
|
|
}
|
2020-03-14 10:41:57 +00:00
|
|
|
break;
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2019-08-17 15:19:58 +01:00
|
|
|
Switch.last_state[i] = button;
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
2020-01-15 12:05:00 +00:00
|
|
|
if (switchflag <= POWER_TOGGLE) {
|
|
|
|
if (!SendKey(KEY_SWITCH, i +1, switchflag)) { // Execute command via MQTT
|
|
|
|
ExecuteCommandPower(i +1, switchflag, SRC_SWITCH); // Execute command internally (if i < devices_present)
|
|
|
|
}
|
|
|
|
}
|
2018-12-28 15:35:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SwitchLoop(void)
|
|
|
|
{
|
2019-08-17 15:19:58 +01:00
|
|
|
if (Switch.present) {
|
|
|
|
if (TimeReached(Switch.debounce)) {
|
|
|
|
SetNextTimeInterval(Switch.debounce, Settings.switch_debounce);
|
2018-12-28 15:35:19 +00:00
|
|
|
SwitchHandler(0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-14 12:13:33 +00:00
|
|
|
#endif // SWITCH_V3
|