mirror of https://github.com/arendst/Tasmota.git
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:
parent
813d2fd3f1
commit
c0f20d31ff
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in New Issue