Browse Source

🐛 Fix NEOPIXEL2_SEPARATE default color (#23057)

Sebastien BLAISOT 2 years ago
parent
commit
95357c33fb
No account linked to committer's email address
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/src/feature/leds/leds.cpp

+ 3
- 3
Marlin/src/feature/leds/leds.cpp View File

@@ -170,9 +170,9 @@ void LEDLights::set_color(const LEDColor &incol
170 170
 
171 171
   #if ENABLED(NEO2_COLOR_PRESETS)
172 172
     const LEDColor LEDLights2::defaultLEDColor = LEDColor(
173
-      LED_USER_PRESET_RED, LED_USER_PRESET_GREEN, LED_USER_PRESET_BLUE
174
-      OPTARG(HAS_WHITE_LED2, LED_USER_PRESET_WHITE)
175
-      OPTARG(NEOPIXEL_LED, LED_USER_PRESET_BRIGHTNESS)
173
+      NEO2_USER_PRESET_RED, NEO2_USER_PRESET_GREEN, NEO2_USER_PRESET_BLUE
174
+      OPTARG(HAS_WHITE_LED2, NEO2_USER_PRESET_WHITE)
175
+      OPTARG(NEOPIXEL_LED, NEO2_USER_PRESET_BRIGHTNESS)
176 176
     );
177 177
   #endif
178 178
 

Loading…
Cancel
Save