Same procedure as every year James
This commit is contained in:
parent
e5ae07b3e8
commit
f5ed710c0b
@ -2,6 +2,10 @@
|
|||||||
|
|
||||||
### Development versions after 0.11.1 release
|
### Development versions after 0.11.1 release
|
||||||
|
|
||||||
|
#### Build 2012311
|
||||||
|
|
||||||
|
- Fixed Countdown mode
|
||||||
|
|
||||||
#### Build 2012310
|
#### Build 2012310
|
||||||
|
|
||||||
- (Hopefully actually) fixed display of usermod values in info screen
|
- (Hopefully actually) fixed display of usermod values in info screen
|
||||||
|
@ -272,6 +272,7 @@ void deserializeConfig() {
|
|||||||
CJSON(countdownMin, cntdwn_goal[4]);
|
CJSON(countdownMin, cntdwn_goal[4]);
|
||||||
CJSON(countdownSec, cntdwn_goal[5]);
|
CJSON(countdownSec, cntdwn_goal[5]);
|
||||||
CJSON(macroCountdown, cntdwn[F("macro")]);
|
CJSON(macroCountdown, cntdwn[F("macro")]);
|
||||||
|
setCountdown();
|
||||||
|
|
||||||
JsonArray timers = tm[F("ins")];
|
JsonArray timers = tm[F("ins")];
|
||||||
uint8_t it = 0;
|
uint8_t it = 0;
|
||||||
|
@ -236,6 +236,7 @@ void handleSettingsSet(AsyncWebServerRequest *request, byte subPage)
|
|||||||
countdownHour = request->arg(F("CH")).toInt();
|
countdownHour = request->arg(F("CH")).toInt();
|
||||||
countdownMin = request->arg(F("CM")).toInt();
|
countdownMin = request->arg(F("CM")).toInt();
|
||||||
countdownSec = request->arg(F("CS")).toInt();
|
countdownSec = request->arg(F("CS")).toInt();
|
||||||
|
setCountdown();
|
||||||
|
|
||||||
macroAlexaOn = request->arg(F("A0")).toInt();
|
macroAlexaOn = request->arg(F("A0")).toInt();
|
||||||
macroAlexaOff = request->arg(F("A1")).toInt();
|
macroAlexaOff = request->arg(F("A1")).toInt();
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// version code in format yymmddb (b = daily build)
|
// version code in format yymmddb (b = daily build)
|
||||||
#define VERSION 2012310
|
#define VERSION 2012311
|
||||||
|
|
||||||
//uncomment this if you have a "my_config.h" file you'd like to use
|
//uncomment this if you have a "my_config.h" file you'd like to use
|
||||||
//#define WLED_USE_MY_CONFIG
|
//#define WLED_USE_MY_CONFIG
|
||||||
|
Loading…
Reference in New Issue
Block a user