Skip to content

Commit de8e436

Browse files
committed
πŸ§‘β€πŸ’» Add neo.set_background_color(rgbw)
1 parent 58fcaeb commit de8e436

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

β€ŽMarlin/src/feature/leds/neopixel.cpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,14 @@ Adafruit_NeoPixel Marlin_NeoPixel::adaneo1(NEOPIXEL_PIXELS, NEOPIXEL_PIN, NEOPIX
4444

4545
#ifdef NEOPIXEL_BKGD_INDEX_FIRST
4646

47-
void Marlin_NeoPixel::set_background_color(uint8_t r, uint8_t g, uint8_t b, uint8_t w) {
48-
for (int background_led = NEOPIXEL_BKGD_INDEX_FIRST; background_led <= NEOPIXEL_BKGD_INDEX_LAST; background_led++)
47+
void Marlin_NeoPixel::set_background_color(const uint8_t r, const uint8_t g, const uint8_t b, const uint8_t w) {
48+
for (int background_led = NEOPIXEL_BKGD_INDEX_FIRST; background_led <= NEOPIXEL_BKGD_INDEX_LAST; background_led++)
4949
set_pixel_color(background_led, adaneo1.Color(r, g, b, w));
5050
}
5151

5252
void Marlin_NeoPixel::reset_background_color() {
5353
constexpr uint8_t background_color[4] = NEOPIXEL_BKGD_COLOR;
54-
set_background_color(background_color[0], background_color[1], background_color[2], background_color[3]);
54+
set_background_color(background_color);
5555
}
5656

5757
#endif
@@ -108,7 +108,7 @@ void Marlin_NeoPixel::init() {
108108
set_color(adaneo1.Color
109109
TERN(LED_USER_PRESET_STARTUP,
110110
(LED_USER_PRESET_RED, LED_USER_PRESET_GREEN, LED_USER_PRESET_BLUE, LED_USER_PRESET_WHITE),
111-
(0, 0, 0, 0))
111+
(255, 255, 255, 255))
112112
);
113113
}
114114

β€ŽMarlin/src/feature/leds/neopixel.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ class Marlin_NeoPixel {
8888
static void set_color(const uint32_t c);
8989

9090
#ifdef NEOPIXEL_BKGD_INDEX_FIRST
91-
static void set_background_color(uint8_t r, uint8_t g, uint8_t b, uint8_t w);
91+
static void set_background_color(const uint8_t r, const uint8_t g, const uint8_t b, const uint8_t w);
92+
static void set_background_color(const uint8_t (&rgbw)[4]) { set_background_color(rgbw[0], rgbw[1], rgbw[2], rgbw[3]); }
9293
static void reset_background_color();
9394
#endif
9495

0 commit comments

Comments
Β (0)