8da985b6d0
Improved formatting
22 lines
530 B
C++
22 lines
530 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();
|
|
}
|