Theo Arends
71dfae2d9d
Fix ESP8266 Device Group exception due to lack of stack space ( #22271 )
2024-12-09 15:16:30 +01:00
Theo Arends
3778f22d7b
Fix wrong GUI Module and Template drop down list indexes regression
2024-11-18 22:53:07 +01:00
Theo Arends
4e40bbf3b6
Bump version v14.3.0.7 - again
...
- ESP32 max number of supported switches/buttons/relays from 28 to 32
- ESP32 max number of interlocks from 14 to 16
2024-11-17 14:03:04 +01:00
Theo Arends
6821293819
Revert "Bump version v14.3.0.7"
...
This reverts commit 14c0a42203
.
2024-11-17 11:30:55 +01:00
Theo Arends
14c0a42203
Bump version v14.3.0.7
...
- ESP32 max number of supported switches/buttons/relays from 28 to 32
- ESP32 max number of interlocks from 14 to 16
2024-11-16 17:47:18 +01:00
Theo Arends
1b9d206dd8
save 28k for ESP32 safeboot
2024-11-11 15:23:21 +01:00
s-hadinger
343d9b9758
Remove logging from safeboot ( #22464 )
...
* Remove logging from safeboot
* Remove logs from Status 5
2024-11-11 10:39:18 +01:00
s-hadinger
b89909991c
`i2c_enabled` refactored as array ( #22387 )
2024-10-30 22:23:13 +01:00
Theo Arends
03b57179ac
Final fix unknown/error
2024-09-21 13:23:14 +02:00
Theo Arends
8d7a27df76
Fix ESP8266 Exception 3 on tasmota-minimal caused by unaligned PROGMEM ( #22169 )
2024-09-20 18:20:09 +02:00
Theo Arends
bf4d0d0890
Revert "Fix ESP8266 Exception 3 on tasmota-minimal caused by unaligned PROGMEM ( #22169 )"
...
This reverts commit b00d7fd0ac
.
2024-09-20 18:14:53 +02:00
Theo Arends
b00d7fd0ac
Fix ESP8266 Exception 3 on tasmota-minimal caused by unaligned PROGMEM ( #22169 )
2024-09-20 18:13:38 +02:00
Theo Arends
9238ee73d6
Add ESP8266 experimental support for second I2C bus
2024-09-19 14:47:18 +02:00
Theo Arends
a5730a76f9
Add command entered to command error and command unknown message
2024-09-17 16:24:45 +02:00
Theo Arends
4f2b24f53d
Add entered command to MQTT command unknown message (bis)
2024-09-17 10:19:00 +02:00
Theo Arends
fd7d2fc0a4
Add entered command to MQTT command unknown message
2024-09-17 10:00:47 +02:00
Theo Arends
a3892ecbc4
Update change logs
2024-09-14 16:13:14 +02:00
Theo Arends
831597e7d9
Version v14.2.0.3
...
- Add command ``SetOption69 1`` to enable Serial Bridge inverted Receive (#22000 )
2024-08-23 11:22:26 +02:00
Theo Arends
69f1ea5627
Move StateText fro MQTT to commands ( #21782 )
2024-07-16 15:16:18 +02:00
Theo Arends
105a08dd20
Skip MQTT response if command is prefixed with underscore ( #21740 )
2024-07-08 16:57:21 +02:00
Theo Arends
09b2670c45
Add command ``Backlog3`` to execute commands without response but rule processing ( #21740 )
2024-07-08 15:53:15 +02:00
Theo Arends
ac06195907
Remove non IDF5 code
2024-05-15 16:45:42 +02:00
Jason2866
1e63c8924e
use "minimal" instead of "safeboot" ( #21346 )
2024-05-04 15:34:11 +02:00
Jason2866
9b8cd42e5f
remove crash recorder from safeboot ( #21332 )
...
* remove crash recorder from safeboot
* small refactor
2024-05-03 14:47:14 +02:00
s-hadinger
c4431eb6fe
Fixed IPv6 support in safeboot ( #21233 )
2024-04-20 22:15:54 +02:00
s-hadinger
541f3630a1
Wifi provide Mac Address on Core3 ( #21117 )
2024-04-07 10:55:53 +02:00
s-hadinger
2128dfbade
Refactored Wifi for ESP32 to allow for Core3 ( #21106 )
...
* Refactored Wifi for ESP32 to allow for Core3
* Fix case in include
* Grrr
* Fix compilation
* Fix Ethernet IPv6
* Fix wrong hostname due to mac address unknown at start
2024-04-05 23:44:21 +02:00
Theo Arends
ed7909f23f
Removed unused `#define MQTT_DATA_STRING` support
2024-04-04 17:03:08 +02:00
Theo Arends
db92a843fc
Change Wifi 5 to Wifi 6
2024-04-04 14:59:32 +02:00
Theo Arends
6558414e2b
Add PowerLock to status
...
- Change Power format in status to bitmap
2024-04-03 15:02:11 +02:00
Theo Arends
7c36029ec2
Add command ``Wifi 5`` to enable 11ax on ESP32 Core3
2024-04-03 14:36:52 +02:00
Theo Arends
fe89774fe0
Bump version v13.4.0.4
...
- Add command ``PowerLock`` to disable power control of selected outputs (#21081 )
2024-04-03 11:47:38 +02:00
Theo Arends
4b44d2fa32
Change ESP32 WiFi phy modes 11n and 11ax represented as HT20, HT40 and HE20 ( #19350 )
2024-03-29 13:04:44 +01:00
Marcus Better
1a462c986c
[tuyamcu_v2] Fix suppressed dimmer updates from MQTT ( #20950 )
...
The driver tried to avoid loops when state updates from the MCU (eg
from physical button press) could be reflected back by Tasmota and
trigger another MCU command, followed by a state update. It did this
by tracking the source of the command in the last_source and
last_command_source variables, suppressing the command if either of
those was SRC_SWITCH.
However this logic is faulty: Since there are two last_source
variables to check, a command might reset one of them, but the other
would still suppress the update. As it turns out, MQTT commands would
only set last_source but not last_command_source. As a result, any
dimmer changes via MQTT would be dropped by the driver and not applied
to the MCU.
Switch functionality (on/off) was still working because those do not
rely on last_command_source, only last_source.
This change removes the loop detection logic altogether for dimmer
updates. This should be safe, because the driver already has the
latest dimmer value in its shadow state, and will not try to re-apply
a current value, thus breaking the loop.
This patch has been tested with several CE-WF500D dimmers which had
this problem.
2024-03-14 17:42:52 +01:00
Theo Arends
080cdb4f0d
Add core3 ethernet support on SPI for all ESP32 models
2024-02-14 16:19:51 +01:00
Theo Arends
10885fe60d
Refactored rules ``Subscribe`` using LList allowing full message size and enabled by default
2024-01-22 16:57:59 +01:00
Theo Arends
1ffbbc914d
Refactor backlog from LinkedList to TasmotaLList
2024-01-21 22:07:49 +01:00
Theo Arends
95f76d623f
Changed command ``TimedPower`` refactored from String to LList
2024-01-21 14:29:44 +01:00
Theo Arends
9608b7513a
Refactor backlog by removing some str copies
2024-01-20 22:45:24 +01:00
Theo Arends
05014d48cf
Refactor backlog from String to char
2024-01-20 17:18:03 +01:00
Theo Arends
c9d0106007
Removed max number of 30 backlog entries
2024-01-18 16:32:28 +01:00
Theo Arends
0f541a963b
Fix TimedPower blink off
2024-01-18 10:38:22 +01:00
Theo Arends
2832ed914b
Change command ``TimedPower``
...
Change command ``TimedPower`` from erasing all timers to showing remaining timers
2024-01-17 15:55:25 +01:00
Theo Arends
9d00897cb4
Fix TimedPower using state names
2024-01-16 15:07:23 +01:00
Theo Arends
2c5508ee96
Add TimedPower update before end
2024-01-16 12:40:35 +01:00
Theo Arends
77d54985d0
Tune TimedPower
2024-01-16 11:02:24 +01:00
Theo Arends
789fd1e055
Add command ``TimedPower``
...
Add command ``TimedPower<index> <milliseconds>[,ON|OFF|TOGGLE|BLINK]`` executes ``Power<index> [ON|OFF|TOGGLE|BLINK] `` and after <millisecond> executes ``Power<index> [OFF|ON|TOGGLE|OFF]``
2024-01-15 23:58:33 +01:00
Theo Arends
0ae793a8d4
Save some bytes
2023-10-21 17:37:31 +02:00
Theo Arends
57860b692d
Fix GpioRead ( #19810 )
2023-10-21 17:20:55 +02:00
s-hadinger
356de1a16a
Add command ``GpioRead`` ( #19814 )
...
* Add command ``GpioRead``
* change output
2023-10-21 15:56:40 +02:00