11 lines
175 B
C++
11 lines
175 B
C++
|
#include "tools.h"
|
||
|
#include "prototypes.h"
|
||
|
#include "config.h"
|
||
|
|
||
|
void clear_leds() {
|
||
|
set_all_leds(CRGB::Black);
|
||
|
}
|
||
|
|
||
|
void set_all_leds(CRGB color) {
|
||
|
FastLED.showColor(color);
|
||
|
}
|