WLED/wled00/wled00.ino
pjhatch a20358b61b Adding 2 ball track modes
With and without collisions
2020-07-12 08:33:48 -05:00

23 lines
531 B
C++

/*
* WLED Arduino IDE compatibility file.
*
* Where has everything gone?
*
* In April 2020, the project's structure underwent a major change.
* Global variables are now found in file "wled.h"
* Global function declarations are found in "fcn_declare.h"
*
* Usermod compatibility: Existing wled06_usermod.ino mods should continue to work. Delete usermod.cpp.
* New usermods should use usermod.cpp instead.
*/
#include "wled.h"
void setup() {
WLED::instance().setup();
}
void loop() {
WLED::instance().loop();
}