Browse Source

Include utility.h in neopixel.cpp

Scott Lahteine 7 years ago
parent
commit
bd54ce830a
1 changed files with 4 additions and 0 deletions
  1. 4
    0
      Marlin/src/feature/leds/neopixel.cpp

+ 4
- 0
Marlin/src/feature/leds/neopixel.cpp View File

@@ -30,6 +30,10 @@
30 30
 
31 31
 #include "neopixel.h"
32 32
 
33
+#if ENABLED(NEOPIXEL_STARTUP_TEST)
34
+  #include "../../core/utility.h"
35
+#endif
36
+
33 37
 Adafruit_NeoPixel pixels(NEOPIXEL_PIXELS, NEOPIXEL_PIN, NEOPIXEL_TYPE + NEO_KHZ800);
34 38
 
35 39
 void set_neopixel_color(const uint32_t color) {

Loading…
Cancel
Save