3afb499930
Added secondary color transition Added option to have UI while receiving realtime Fixed mDNS not working Fixed Arduino OTA not working when locked but enabled
23 lines
360 B
C++
23 lines
360 B
C++
/*
|
|
* This file allows you to add own functionality to WLED more easily
|
|
* See: https://github.com/Aircoookie/WLED/wiki/Add-own-functionality
|
|
* EEPROM bytes 2944 to 3071 are reserved for your custom use case.
|
|
*/
|
|
|
|
//Use userVar0 and userVar1 (API calls &U0=,&U1=, uint16_t)
|
|
|
|
void userBeginPreConnection()
|
|
{
|
|
|
|
}
|
|
|
|
void userBegin()
|
|
{
|
|
|
|
}
|
|
|
|
void userLoop()
|
|
{
|
|
|
|
}
|