mirror of
https://github.com/arendst/Tasmota.git
synced 2025-07-29 13:46:37 +00:00
Change max number of rule `Var
`s to 16
Change max number of rule ``Var``s from 5 to 16 (#4933)
This commit is contained in:
parent
35e51918e3
commit
7695a2c5bf
@ -20,7 +20,7 @@ In addition to the [release webpage](https://github.com/arendst/Tasmota/releases
|
|||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
[](https://github.com/arendst/Tasmota)
|
[](https://github.com/arendst/Tasmota)
|
||||||
[](http://thehackbox.org/tasmota/)
|
[](http://thehackbox.org/tasmota/)
|
||||||
[](https://travis-ci.org/arendst/Tasmota)
|
[](https://travis-ci.org/arendst/Tasmota)
|
||||||
|
|
||||||
@ -67,6 +67,7 @@ See [wiki migration path](https://tasmota.github.io/docs/#/Upgrading?id=migratio
|
|||||||
3. Migrate to **Sonoff-Tasmota 5.14**
|
3. Migrate to **Sonoff-Tasmota 5.14**
|
||||||
4. Migrate to **Sonoff-Tasmota 6.x**
|
4. Migrate to **Sonoff-Tasmota 6.x**
|
||||||
5. Migrate to **Tasmota 7.x**
|
5. Migrate to **Tasmota 7.x**
|
||||||
|
6. Migrate to **Tasmota 8.x**
|
||||||
|
|
||||||
## Support Information
|
## Support Information
|
||||||
|
|
||||||
|
@ -51,4 +51,5 @@ The following binary downloads have been compiled with ESP8266/Arduino library c
|
|||||||
- Change Settings text handling allowing variable length text within a total text pool of 699 characters
|
- Change Settings text handling allowing variable length text within a total text pool of 699 characters
|
||||||
- Change Smoother ``Fade`` using 100Hz instead of 20Hz animation (#7179)
|
- Change Smoother ``Fade`` using 100Hz instead of 20Hz animation (#7179)
|
||||||
- Change max number of rule ``Mem``s from 5 to 16 (#4933)
|
- Change max number of rule ``Mem``s from 5 to 16 (#4933)
|
||||||
- Add support for max 150 characters in command parameter strings (#3686, #4754)
|
- Change max number of rule ``Var``s from 5 to 16 (#4933)
|
||||||
|
- Add support for max 150 characters in most command parameter strings (#3686, #4754)
|
||||||
|
@ -5,6 +5,7 @@
|
|||||||
- Change Settings text handling allowing variable length text within a total text pool of 699 characters
|
- Change Settings text handling allowing variable length text within a total text pool of 699 characters
|
||||||
- Change Smoother ``Fade`` using 100Hz instead of 20Hz animation (#7179)
|
- Change Smoother ``Fade`` using 100Hz instead of 20Hz animation (#7179)
|
||||||
- Change max number of rule ``Mem``s from 5 to 16 (#4933)
|
- Change max number of rule ``Mem``s from 5 to 16 (#4933)
|
||||||
|
- Change max number of rule ``Var``s from 5 to 16 (#4933)
|
||||||
- Add support for max 150 characters in most command parameter strings (#3686, #4754)
|
- Add support for max 150 characters in most command parameter strings (#3686, #4754)
|
||||||
|
|
||||||
## Released
|
## Released
|
||||||
|
@ -143,7 +143,7 @@ const uint32_t LOOP_SLEEP_DELAY = 50; // Lowest number of milliseconds to
|
|||||||
\*********************************************************************************************/
|
\*********************************************************************************************/
|
||||||
|
|
||||||
#define MAX_RULE_TIMERS 8 // Max number of rule timers (4 bytes / timer)
|
#define MAX_RULE_TIMERS 8 // Max number of rule timers (4 bytes / timer)
|
||||||
#define MAX_RULE_VARS 5 // Max number of rule variables (10 bytes / variable)
|
#define MAX_RULE_VARS 16 // Max number of rule variables (33 bytes / variable)
|
||||||
|
|
||||||
/*
|
/*
|
||||||
// Removed from esp8266 core since 20171105
|
// Removed from esp8266 core since 20171105
|
||||||
|
Loading…
x
Reference in New Issue
Block a user