We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
After PR #18490, M150 without the new I option does nothing, and PRINTER_EVENT_LEDS no longer works.
M150
I
PRINTER_EVENT_LEDS
Configuration_adv.zip
M150 U255
M150 I99 U255
M190
It looks like the PR broke Neopixels except for M150 with the I option specified.
Should
if (get_neo_index() < 0) {
be
if(get_neo_index() >= 0) {
?
The text was updated successfully, but these errors were encountered:
Confirmed its broken, looks like thinkyhead broke it when he changed index to support -1
Sorry, something went wrong.
Your fix is correct.
Created PR #18544.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
Bug Description
After PR #18490,
M150
without the newI
option does nothing, andPRINTER_EVENT_LEDS
no longer works.My Configurations
Configuration_adv.zip
Steps to Reproduce
M150 U255
- all Neopixels should light up bright green, but they do not.M150 I99 U255
- now all Neopixels should light up.M190
-PRINTER_EVENT_LEDS
should operate but does not.It looks like the PR broke Neopixels except for
M150
with theI
option specified.Additional Information
Should
be
?
The text was updated successfully, but these errors were encountered: