WLED/wled00/wled06_usermod.ino

24 lines
485 B
Arduino
Raw Normal View History

2018-02-25 14:46:11 +01:00
/*
* This file allows you to add own functionality to WLED more easily
* See: https://github.com/Aircoookie/WLED/wiki/Add-own-functionality
* EEPROM bytes 2750+ are reserved for your custom use case. (if you extend #define EEPSIZE in wled01_eeprom.h)
* bytes 2400+ are currently ununsed, but might be used for future wled features
2018-02-25 14:46:11 +01:00
*/
//Use userVar0 and userVar1 (API calls &U0=,&U1=, uint16_t)
2018-02-25 14:46:11 +01:00
void userBeginPreConnection()
{
2018-02-25 14:46:11 +01:00
}
void userBegin()
{
}
void userLoop()
{
}