2016-12-31 00:38:51 +01:00
|
|
|
/*
|
2020-04-10 12:30:08 +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.
|
2017-12-14 00:12:02 +01:00
|
|
|
*/
|
2020-04-10 12:30:08 +02:00
|
|
|
#include "wled.h"
|
2016-12-31 00:38:51 +01:00
|
|
|
|
2016-09-11 23:07:18 +02:00
|
|
|
void setup() {
|
2020-04-10 12:30:08 +02:00
|
|
|
WLED::instance().setup();
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void loop() {
|
2020-04-10 12:30:08 +02:00
|
|
|
WLED::instance().loop();
|
2016-09-11 23:07:18 +02:00
|
|
|
}
|