Skip to content
Snippets Groups Projects
Commit daeff5a1 authored by Scott Lahteine's avatar Scott Lahteine
Browse files

Tweak neopixel self-test

parent 0ceec1f1
Branches
Tags
No related merge requests found
......@@ -45,13 +45,13 @@ void setup_neopixel() {
pixels.show(); // initialize to all off
#if ENABLED(NEOPIXEL_STARTUP_TEST)
delay(2000);
safe_delay(1000);
set_neopixel_color(pixels.Color(255, 0, 0, 0)); // red
delay(2000);
safe_delay(1000);
set_neopixel_color(pixels.Color(0, 255, 0, 0)); // green
delay(2000);
safe_delay(1000);
set_neopixel_color(pixels.Color(0, 0, 255, 0)); // blue
delay(2000);
safe_delay(1000);
#endif
set_neopixel_color(pixels.Color(NEO_WHITE)); // white
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment