2016-12-31 00:38:51 +01:00
|
|
|
/*
|
2020-04-07 00:04:09 +02:00
|
|
|
* 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.
|
2020-03-31 02:38:08 +02:00
|
|
|
*/
|
2020-03-25 09:00:55 +01:00
|
|
|
#include "wled.h"
|
2018-09-15 17:29:01 +02:00
|
|
|
|
2016-09-11 23:07:18 +02:00
|
|
|
void setup() {
|
2020-03-28 13:45:20 +01:00
|
|
|
WLED::instance().setup();
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
2020-03-28 13:45:20 +01:00
|
|
|
WLED::instance().loop();
|
2020-03-31 02:38:08 +02:00
|
|
|
}
|