6.4.1.19 Add command SetOption37

6.4.1.19 20190222
 * Add command SetOption37 for RGBCW color mapping (#5326)
This commit is contained in:
Theo Arends 2019-02-25 11:14:33 +01:00
parent 813d2fd3f1
commit c0f20d31ff
3 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,7 @@
/* 6.4.1.18 20190221
/* 6.4.1.19 20190222
* Add command SetOption37 for RGBCW color mapping (#5326)
*
* 6.4.1.18 20190221
* Fix some exceptions and watchdogs due to lack of stack space - part 1 (#5215)
* Fix some exceptions and watchdogs due to lack of stack space - part 2
* Add command SetOption62 0/1 to disable retain on Button or Swith hold messages (#5299)

View File

@ -1056,7 +1056,7 @@ void SettingsDelta(void)
if (Settings.version < 0x06040110) {
ModuleDefault(WEMOS);
}
if (Settings.version < 0x06040112) {
if (Settings.version < 0x06040113) {
Settings.param[P_RGB_REMAP] = RGB_REMAP_RGBW;
}

View File

@ -20,7 +20,7 @@
#ifndef _SONOFF_VERSION_H_
#define _SONOFF_VERSION_H_
#define VERSION 0x06040112
#define VERSION 0x06040113
#define D_PROGRAMNAME "Sonoff-Tasmota"
#define D_AUTHOR "Theo Arends"