Skip to content

Commit

Permalink
🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)
Browse files Browse the repository at this point in the history
  • Loading branch information
sblaisot authored and thinkyhead committed Nov 3, 2021
1 parent 8dd3f38 commit e5c4e77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/src/feature/leds/leds.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -170,9 +170,9 @@ void LEDLights::set_color(const LEDColor &incol

#if ENABLED(NEO2_COLOR_PRESETS)
const LEDColor LEDLights2::defaultLEDColor = LEDColor(
LED_USER_PRESET_RED, LED_USER_PRESET_GREEN, LED_USER_PRESET_BLUE
OPTARG(HAS_WHITE_LED2, LED_USER_PRESET_WHITE)
OPTARG(NEOPIXEL_LED, LED_USER_PRESET_BRIGHTNESS)
NEO2_USER_PRESET_RED, NEO2_USER_PRESET_GREEN, NEO2_USER_PRESET_BLUE
OPTARG(HAS_WHITE_LED2, NEO2_USER_PRESET_WHITE)
OPTARG(NEOPIXEL_LED, NEO2_USER_PRESET_BRIGHTNESS)
);
#endif

Expand Down

0 comments on commit e5c4e77

Please sign in to comment.