Skip to content

Commit

Permalink
🐛 Fix Neopixel 1 startup (#25203)
Browse files Browse the repository at this point in the history
  • Loading branch information
sblaisot authored Jan 8, 2023
1 parent dd068fa commit e96e726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/feature/leds/neopixel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ void Marlin_NeoPixel::init() {
set_color(adaneo1.Color
TERN(LED_USER_PRESET_STARTUP,
(LED_USER_PRESET_RED, LED_USER_PRESET_GREEN, LED_USER_PRESET_BLUE, LED_USER_PRESET_WHITE),
(255, 255, 255, 255))
(0, 0, 0, 0))
);
}

Expand Down

0 comments on commit e96e726

Please sign in to comment.