13 lines
174 B
C++
13 lines
174 B
C++
/*
|
|
Arduino Studio support file.
|
|
*/
|
|
#include "wled.h"
|
|
|
|
WLED wled;
|
|
void setup() {
|
|
wled.instance(); // Force creation of static instance
|
|
}
|
|
|
|
void loop() {
|
|
wled.loop();
|
|
} |