Fix M355 with NEOPIXEL (#21200)
This commit is contained in:
parent
7a1ec78563
commit
e27fba0c06
@ -60,12 +60,10 @@ void GcodeSuite::M355() {
|
|||||||
if (!caselight.on)
|
if (!caselight.on)
|
||||||
SERIAL_ECHOLNPGM(STR_OFF);
|
SERIAL_ECHOLNPGM(STR_OFF);
|
||||||
else {
|
else {
|
||||||
#if CASELIGHT_USES_BRIGHTNESS
|
if (TERN0(CASELIGHT_USES_BRIGHTNESS, TERN(CASE_LIGHT_USE_NEOPIXEL, true, PWM_PIN(CASE_LIGHT_PIN)))) {
|
||||||
if (PWM_PIN(CASE_LIGHT_PIN)) {
|
|
||||||
SERIAL_ECHOLN(int(caselight.brightness));
|
SERIAL_ECHOLN(int(caselight.brightness));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
SERIAL_ECHOLNPGM(STR_ON);
|
SERIAL_ECHOLNPGM(STR_ON);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user