-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
setLedDriverMode(uint8_t mode) doesn't set LedDriverMode for all channels #32
Labels
bug
Something isn't working
Comments
Thanks for reporting this issue. |
Quick look at the code and found a possible cause. Can you change line 520 in the .cpp file? for (int reg = 0; reg < 4; reg++)
{
writeLedOut(reg, mask);
} Please let me know if that fixes the issue. |
Wow, thank you for the prompt response! I will try that later once I'm back. |
Yes it works! |
RobTillaart
added a commit
that referenced
this issue
Jan 18, 2024
RobTillaart
added a commit
that referenced
this issue
Jan 18, 2024
new version 0.6.0 released with fix. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Only channels 0-11 are set to the desired mode using this method, with channels 12-15 not being set to desired mode.
Manual setting using setLedDriverMode(uint8_t channel, uint8_t mode) for every channel (from 0 through 15) works though.
The text was updated successfully, but these errors were encountered: