-
-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Description
What happened?
WLED JSON Remote Issue: Preset Changes Stop After ID 5
I am using the latest version of WLED (v0.15.0) on an ESP32, with a TSOP (IR) sensor added. I encountered an issue while using the JSON remote functionality.
Issue Description:
In my JSON configuration, I have the following commands for increasing and decreasing the preset:
"0xF730CF": {
"label": "Presets",
"cmnt": "Increase by 1",
"cmd": "PL=~1"
},
"0xF7B04F": {
"label": "Presets",
"cmnt": "Decrease by 1",
"cmd": "PL=~-1"
}However, when I press the corresponding buttons on the remote, the presets change only up to ID 5. After that, the preset stops changing, even if I press the button multiple times. The effect remains stuck at ID 5, and no further changes occur despite having more presets available.
To Reproduce Bug
The following JSON configuration defines two buttons with IR codes for increasing and decreasing a preset. There is a bug that needs to be reproduced based on these configurations.
JSON Configuration for IR Codes
{
"0xF730CF": {
"label": "Presets",
"cmnt": "Increase by 1",
"cmd": "PL=~1"
},
"0xF7B04F": {
"label": "Presets",
"cmnt": "Decrease by 1",
"cmd": "PL=~-1"
}
}Expected Behavior
The system should cycle through all saved presets ( i have 17 saved presets) seamlessly, reaching the last preset ID without any issues.
Install Method
Binary from WLED.me
What version of WLED?
WLED 0.15.0
Which microcontroller/board are you seeing the problem on?
ESP32
Relevant log/trace output
No response
Anything else?
No response
Code of Conduct
- I agree to follow this project's Code of Conduct