mirror of https://github.com/arendst/Tasmota.git
6.3.0.13 Add command SetOption59
6.3.0.13 20181126 * Add command SetOption59 0/1 to change state topic from tele/STATE to stat/RESULT (#4450)
This commit is contained in:
parent
eb851a9a90
commit
b4e2fe0439
|
@ -1,4 +1,7 @@
|
|||
/* 6.3.0.12 20181122
|
||||
/* 6.3.0.13 20181126
|
||||
* Add command SetOption59 0/1 to change state topic from tele/STATE to stat/RESULT (#4450)
|
||||
*
|
||||
* 6.3.0.12 20181122
|
||||
* Remove delays introduced in 6.3.0.11 (#4233)
|
||||
* Add additional start-up delay during initial wifi connection
|
||||
* Add support for I2C MGC3130 Electric Field Effect sensor by Christian Baars (#3774, #4404)
|
||||
|
|
|
@ -72,7 +72,7 @@ typedef union { // Restricted by MISRA-C Rule 18.4 bu
|
|||
uint32_t use_wifi_scan : 1; // bit 6 (v6.3.0.10)
|
||||
uint32_t use_wifi_rescan : 1; // bit 7 (v6.3.0.10)
|
||||
uint32_t receive_raw : 1; // bit 8 (v6.3.0.11)
|
||||
uint32_t hass_tele_as_result : 1; // bit 9
|
||||
uint32_t hass_tele_as_result : 1; // bit 9 (v6.3.0.13)
|
||||
uint32_t spare10 : 1;
|
||||
uint32_t spare11 : 1;
|
||||
uint32_t spare12 : 1;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
#ifndef _SONOFF_VERSION_H_
|
||||
#define _SONOFF_VERSION_H_
|
||||
|
||||
#define VERSION 0x0603000C
|
||||
#define VERSION 0x0603000D
|
||||
|
||||
#define D_PROGRAMNAME "Sonoff-Tasmota"
|
||||
#define D_AUTHOR "Theo Arends"
|
||||
|
|
Loading…
Reference in New Issue