From c20d789fdede961dbe950c0cfaf8701a0b569161 Mon Sep 17 00:00:00 2001 From: stefanbode Date: Sat, 10 Dec 2022 23:54:09 +0100 Subject: [PATCH] Update support.ino --- tasmota/tasmota_support/support.ino | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tasmota/tasmota_support/support.ino b/tasmota/tasmota_support/support.ino index bb92157b6..716e578bc 100755 --- a/tasmota/tasmota_support/support.ino +++ b/tasmota/tasmota_support/support.ino @@ -1024,18 +1024,20 @@ bool DecodeCommand(const char* haystack, void (* const MyCommand[])(void), const return false; } -const char kOptions[] PROGMEM = "OFF|" D_OFF "|FALSE|" D_FALSE "|STOP|" D_STOP "|" D_CELSIUS "|" // 0 +const char kOptions[] PROGMEM = "OFF|" D_OFF "|FALSE|" D_FALSE "|STOP|" D_STOP "|" D_CELSIUS "|DOWN|" D_CLOSE "|" // 0 "ON|" D_ON "|TRUE|" D_TRUE "|START|" D_START "|" D_FAHRENHEIT "|" D_USER "|" // 1 "TOGGLE|" D_TOGGLE "|" D_ADMIN "|" // 2 "BLINK|" D_BLINK "|" // 3 "BLINKOFF|" D_BLINKOFF "|" // 4 + "UP|" D_OPEN "|" // 100 "ALL" ; // 255 -const uint8_t sNumbers[] PROGMEM = { 0,0,0,0,0,0,0, +const uint8_t sNumbers[] PROGMEM = { 0,0,0,0,0,0,0,0,0, 1,1,1,1,1,1,1,1, 2,2,2, 3,3, 4,4, + 100,100, 255 }; int GetStateNumber(const char *state_text)