WLED/wled00/wled00.ino

13 lines
174 B
Arduino
Raw Normal View History

/*
Arduino Studio support file.
*/
#include "wled.h"
WLED wled;
2016-09-11 23:07:18 +02:00
void setup() {
wled.instance(); // Force creation of static instance
2016-09-11 23:07:18 +02:00
}
void loop() {
wled.loop();
}