-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WLED 0.15+ always resets GPIO 0 to become a button pin (two new bugs) #4629
Comments
I've been digging around the issue tracker now. There has been previous discussion of this and some talks about fixes, but it didn't have a good summary of the actual bugs this causes, so it got lost in the noise.
The last pull request above actually talks about the However, if we start digging into v0.15.1.beta2, we see some interesting changes in WLED: https://github.com/wled/WLED/tree/v0.15.1.beta2 Lines 292 to 299 in 6572efb
There's newly added code which is supposed to set the buttons to Edit: I see that the fix was added 7 months ago in this commit: da6d64e @PaoloTK told me on Discord that the new code doesn't run. He said that if we add a debug print statement to the highlighted Here's what to do next:
|
To clarify, this was my experience when testing while working on the previous 2 PRs. It could have been fixed since then, but I have been unable to test. |
What happened?
The ability to have more than 2 buttons has introduced a bug in WLED's pin handling.
WLED_MAX_BUTTONS
default array length is dynamic and is2
for ESP8266 and4
for ESP32. It can also be edited by the compiler flag to become even larger if wanted.BTNPIN
andBTNTYPE
. Which means there's some unspecified values in the array on ESP32:btnPin[4] = {2,3}
becomes{2,3,0,0}
automatically. So for example, WLED's default values for an ESP32 binary will look like this:cfg.cpp: if (fromFS) {
never executes. That code is supposed to setGPIO = -1 and Type = NONE
for every button pin whose pre-defined firmware setting for the GPIO was either -1 or the type was NONE. Basically a "reset all unused pins". But that code never executes!>= 0
) button GPIO pins even if their type is set to NONE (Disabled). So it steals/allocates all "disabled" button pins too. If a button setting is "disabled", it should not steal ownership of them!There is a temporary workaround via compiler flags: By manually specifying every array index on ESP32 builds:
To Reproduce Bug
x
Expected Behavior
x
Install Method
Binary from WLED.me
What version of WLED?
0.15 and newer
Which microcontroller/board are you seeing the problem on?
ESP32
Relevant log/trace output
Anything else?
No response
Code of Conduct
The text was updated successfully, but these errors were encountered: