Skip to content

Commit 9022552

Browse files
esp32 fixes
1 parent 7bb07b9 commit 9022552

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

tasmota/include/tasmota_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,6 @@
2020
#ifndef _TASMOTA_VERSION_H_
2121
#define _TASMOTA_VERSION_H_
2222

23-
const uint32_t TASMOTA_VERSION = 0x0D040004; // 13.4.0.4
23+
const uint32_t TASMOTA_VERSION = 0x0D040005; // 13.4.0.5
2424

2525
#endif // _TASMOTA_VERSION_H_

tasmota/my_user_config.h

+12-12
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
#define USER_TEMPLATE "{\"NAME\":\"Athom Plug V2\",\"GPIO\":[0,0,0,3104,0,32,0,0,224,576,0,0,0,0],\"FLAG\":0,\"BASE\":18}" // [Template] Set JSON template
5757
#endif // ESP8266
5858
#ifdef ESP32
59-
#define FALLBACK_MODULE WEMOS // [Module2] Select default module on fast reboot where USER_MODULE is user template
60-
//#define USER_TEMPLATE "{\"NAME\":\"ESP32-DevKit\",\"GPIO\":[1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,0,1,1,1,0,0,0,0,1,1,1,1,1,0,0,1],\"FLAG\":0,\"BASE\":1}" // [Template] Set JSON template
59+
#define FALLBACK_MODULE USER_MODULE // [Module2] Select default module on fast reboot where USER_MODULE is user template
60+
#define USER_TEMPLATE "{\"NAME\":\"Athom Plug V3\",\"GPIO\":[0,0,0,32,0,224,576,0,0,0,0,0,0,0,0,0,0,0,0,0,3104,0],\"FLAG\":0,\"BASE\":1}" // [Template] Set JSON template
6161
#endif // ESP32
6262

6363
#define SAVE_DATA 1 // [SaveData] Save changed parameters to Flash (0 = disable, 1 - 3600 seconds)
@@ -568,8 +568,8 @@
568568
// #define USE_DGR_LIGHT_SEQUENCE // Add support for device group light sequencing (requires USE_DEVICE_GROUPS) (+0k2 code)
569569
//#define USE_LSC_MCSL // Add support for GPE Multi color smart light as sold by Action in the Netherlands (+1k1 code)
570570

571-
// #define USE_LIGHT_ARTNET // Add support for DMX/ArtNet via UDP on port 6454 (+3.5k code)
572-
// #define USE_LIGHT_ARTNET_MCAST 239,255,25,54 // Multicast address used to listen: 239.255.25.54
571+
#define USE_LIGHT_ARTNET // Add support for DMX/ArtNet via UDP on port 6454 (+3.5k code)
572+
#define USE_LIGHT_ARTNET_MCAST 239,255,25,54 // Multicast address used to listen: 239.255.25.54
573573

574574
// -- Counter input -------------------------------
575575
#define USE_COUNTER // Enable inputs as counter (+0k8 code)
@@ -822,7 +822,7 @@
822822
// #define MODBUS_BRIDGE_TCP_DEFAULT_PORT 502 // Add support for software Modbus TCP Bridge (start the TCP bridge automatically at PORT 502)
823823
//#define USE_TCP_BRIDGE // Add support for Serial to TCP bridge (+1.3k code)
824824
//#define USE_MP3_PLAYER // Use of the DFPlayer Mini MP3 Player RB-DFR-562 commands: play, pause, stop, track, volume and reset
825-
// #define MP3_VOLUME 30 // Set the startup volume on init, the range can be 0..100(max)
825+
#define MP3_VOLUME 30 // Set the startup volume on init, the range can be 0..100(max)
826826
// #define USE_DY_SV17F // Use of DY-SV17F MP3 Player commands: play, stop, track and volume
827827
//#define USE_AZ7798 // Add support for AZ-Instrument 7798 CO2 datalogger (+1k6 code)
828828
//#define USE_PN532_HSU // Add support for PN532 using HSU (Serial) interface (+1k7 code, 156 bytes mem)
@@ -915,10 +915,10 @@
915915

916916
// -- IR Remote features - subset of IR protocols --------------------------
917917
// #define USE_IR_REMOTE // Send IR remote commands using library IRremoteESP8266 (+4k3 code, 0k3 mem, 48 iram)
918-
// #define IR_SEND_INVERTED false // Invert the output. (default = false) e.g. LED is illuminated when GPIO is LOW rather than HIGH.
918+
#define IR_SEND_INVERTED false // Invert the output. (default = false) e.g. LED is illuminated when GPIO is LOW rather than HIGH.
919919
// Setting inverted to something other than the default could easily destroy your IR LED if you are overdriving it.
920920
// Unless you REALLY know what you are doing, don't change this.
921-
// #define IR_SEND_USE_MODULATION true // Do we do frequency modulation during transmission? i.e. If not, assume a 100% duty cycle.
921+
#define IR_SEND_USE_MODULATION true // Do we do frequency modulation during transmission? i.e. If not, assume a 100% duty cycle.
922922

923923
// ====> IR Full protocols are enabled with the line below
924924
// #define USE_IR_REMOTE_FULL // Support all IR protocols from IRremoteESP8266
@@ -945,11 +945,11 @@
945945

946946
// Enable IR devoder via GPIO `IR Recv` - always enabled if `USE_IR_REMOTE_FULL`
947947
// #define USE_IR_RECEIVE // Support for IR receiver (+7k2 code, 264 iram)
948-
// #define IR_RCV_BUFFER_SIZE 100 // Max number of packets allowed in capture buffer (default 100 (*2 bytes ram))
949-
// #define IR_RCV_TIMEOUT 15 // Number of milli-Seconds of no-more-data before we consider a message ended (default 15)
950-
// #define IR_RCV_MIN_UNKNOWN_SIZE 6 // Set the smallest sized "UNKNOWN" message packets we actually care about (default 6, max 255)
951-
// #define IR_RCV_WHILE_SENDING 0 // Turns on receiver while sending messages, i.e. receive your own. This is unreliable and can cause IR timing issues
952-
// #define IR_RCV_TOLERANCE 25 // Base tolerance percentage for matching incoming IR messages (default 25, max 100)
948+
#define IR_RCV_BUFFER_SIZE 100 // Max number of packets allowed in capture buffer (default 100 (*2 bytes ram))
949+
#define IR_RCV_TIMEOUT 15 // Number of milli-Seconds of no-more-data before we consider a message ended (default 15)
950+
#define IR_RCV_MIN_UNKNOWN_SIZE 6 // Set the smallest sized "UNKNOWN" message packets we actually care about (default 6, max 255)
951+
#define IR_RCV_WHILE_SENDING 0 // Turns on receiver while sending messages, i.e. receive your own. This is unreliable and can cause IR timing issues
952+
#define IR_RCV_TOLERANCE 25 // Base tolerance percentage for matching incoming IR messages (default 25, max 100)
953953

954954
// -- SD Card support -----------------------------
955955
// #define USE_SDCARD // mount SD Card, requires configured SPI pins and setting of `SDCard CS` gpio

tasmota/user_config_override_sample.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ Examples :
8787
// !!! Remember that your changes GOES AT THE BOTTOM OF THIS FILE right before the last #endif !!!
8888
*/
8989

90-
#ifndef USE_MQTT_TLS
91-
#define USE_MQTT_TLS
92-
#endif
90+
// #ifndef USE_MQTT_TLS
91+
// #define USE_MQTT_TLS
92+
// #endif
9393
#define USE_MQTT_AZURE_IOT
9494

9595
#define USE_AZURE_DIRECT_METHOD

0 commit comments

Comments
 (0)