mirror of https://github.com/arendst/Tasmota.git
v3.9.8
3.9.8 20170130 * Remove GPIO07 and GPIO08 from user selectable (#5)
This commit is contained in:
parent
7d7d14ae38
commit
571666870b
|
@ -1,7 +1,7 @@
|
||||||
## Sonoff-Tasmota
|
## Sonoff-Tasmota
|
||||||
Provide ESP8266 based Sonoff by [iTead Studio](https://www.itead.cc/) and ElectroDragon IoT Relay with Serial, Web and MQTT control allowing 'Over the Air' or OTA firmware updates using Arduino IDE.
|
Provide ESP8266 based Sonoff by [iTead Studio](https://www.itead.cc/) and ElectroDragon IoT Relay with Serial, Web and MQTT control allowing 'Over the Air' or OTA firmware updates using Arduino IDE.
|
||||||
|
|
||||||
Current version is **3.9.7** - See ```sonoff/_releasenotes.ino``` for change information.
|
Current version is **3.9.8** - See ```sonoff/_releasenotes.ino``` for change information.
|
||||||
|
|
||||||
- This version provides all (Sonoff) modules in one file and starts up with Sonoff Basic.
|
- This version provides all (Sonoff) modules in one file and starts up with Sonoff Basic.
|
||||||
- Once uploaded select module using the configuration webpage or the commands ```Modules``` and ```Module```.
|
- Once uploaded select module using the configuration webpage or the commands ```Modules``` and ```Module```.
|
||||||
|
@ -11,7 +11,7 @@ Current version is **3.9.7** - See ```sonoff/_releasenotes.ino``` for change inf
|
||||||
See [Wiki](https://github.com/arendst/Sonoff-Tasmota/wiki) for more information.<br />
|
See [Wiki](https://github.com/arendst/Sonoff-Tasmota/wiki) for more information.<br />
|
||||||
See [Community](https://groups.google.com/d/forum/sonoffusers) for forum and more user experience.
|
See [Community](https://groups.google.com/d/forum/sonoffusers) for forum and more user experience.
|
||||||
|
|
||||||
Starting with version 2.0.0 the following devices are supported:
|
The following devices are supported:
|
||||||
- [iTead Sonoff Basic](http://sonoff.itead.cc/en/products/sonoff/sonoff-basic)
|
- [iTead Sonoff Basic](http://sonoff.itead.cc/en/products/sonoff/sonoff-basic)
|
||||||
- [iTead Sonoff RF](http://sonoff.itead.cc/en/products/sonoff/sonoff-rf)
|
- [iTead Sonoff RF](http://sonoff.itead.cc/en/products/sonoff/sonoff-rf)
|
||||||
- [iTead Sonoff SV](https://www.itead.cc/sonoff-sv.html)
|
- [iTead Sonoff SV](https://www.itead.cc/sonoff-sv.html)
|
||||||
|
|
Binary file not shown.
|
@ -1,4 +1,7 @@
|
||||||
/* 3.9.7 20170129
|
/* 3.9.8 20170130
|
||||||
|
* Remove GPIO07 and GPIO08 from user selectable (#5)
|
||||||
|
*
|
||||||
|
* 3.9.7 20170129
|
||||||
* Fix possible WS2812 exceptions when using emulation
|
* Fix possible WS2812 exceptions when using emulation
|
||||||
* Add command Emulation to dynamic configure Belkin WeMo and Hue Bridge for Alexa
|
* Add command Emulation to dynamic configure Belkin WeMo and Hue Bridge for Alexa
|
||||||
*
|
*
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
* ====================================================
|
* ====================================================
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define VERSION 0x03090700 // 3.9.7
|
#define VERSION 0x03090800 // 3.9.8
|
||||||
|
|
||||||
enum log_t {LOG_LEVEL_NONE, LOG_LEVEL_ERROR, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_DEBUG_MORE, LOG_LEVEL_ALL};
|
enum log_t {LOG_LEVEL_NONE, LOG_LEVEL_ERROR, LOG_LEVEL_INFO, LOG_LEVEL_DEBUG, LOG_LEVEL_DEBUG_MORE, LOG_LEVEL_ALL};
|
||||||
enum week_t {Last, First, Second, Third, Fourth};
|
enum week_t {Last, First, Second, Third, Fourth};
|
||||||
|
|
|
@ -152,9 +152,7 @@ const mytmplt modules[MAXMODULE] PROGMEM = {
|
||||||
0,
|
0,
|
||||||
GPIO_REL3, // GPIO04 Sonoff 4CH Red Led and Relay 3 (0 = Off, 1 = On)
|
GPIO_REL3, // GPIO04 Sonoff 4CH Red Led and Relay 3 (0 = Off, 1 = On)
|
||||||
GPIO_REL2, // GPIO05 Sonoff 4CH Red Led and Relay 2 (0 = Off, 1 = On)
|
GPIO_REL2, // GPIO05 Sonoff 4CH Red Led and Relay 2 (0 = Off, 1 = On)
|
||||||
0,
|
0, 0, 0,
|
||||||
GPIO_USER, // GPIO07 Optional sensor
|
|
||||||
GPIO_USER, // GPIO08 Optional sensor
|
|
||||||
GPIO_KEY2, // GPIO09 Button 2
|
GPIO_KEY2, // GPIO09 Button 2
|
||||||
GPIO_KEY3, // GPIO10 Button 3
|
GPIO_KEY3, // GPIO10 Button 3
|
||||||
0,
|
0,
|
||||||
|
@ -235,7 +233,8 @@ const mytmplt modules[MAXMODULE] PROGMEM = {
|
||||||
},
|
},
|
||||||
{ "User Test", // Sonoff Basic User Test
|
{ "User Test", // Sonoff Basic User Test
|
||||||
GPIO_KEY1, // GPIO00 Button
|
GPIO_KEY1, // GPIO00 Button
|
||||||
0, 0,
|
0,
|
||||||
|
GPIO_USER, // GPIO02 Optional sensor
|
||||||
GPIO_USER, // GPIO03 Serial TXD and Optional sensor
|
GPIO_USER, // GPIO03 Serial TXD and Optional sensor
|
||||||
GPIO_USER, // GPIO04 Optional sensor
|
GPIO_USER, // GPIO04 Optional sensor
|
||||||
0, 0, 0, 0, 0, 0, 0,
|
0, 0, 0, 0, 0, 0, 0,
|
||||||
|
|
Loading…
Reference in New Issue