2018-02-25 14:46:11 +01:00
|
|
|
/*
|
|
|
|
* This file allows you to add own functionality to WLED more easily
|
2018-02-28 00:27:10 +01:00
|
|
|
* See: https://github.com/Aircoookie/WLED/wiki/Add-own-functionality
|
|
|
|
* EEPROM bytes 2944 to 3071 are reserved for your custom use case.
|
2018-02-25 14:46:11 +01:00
|
|
|
*/
|
|
|
|
|
2018-05-10 19:55:58 +02:00
|
|
|
//Use userVar0 and userVar1 (API calls &U0=,&U1=, uint16_t)
|
|
|
|
|
2018-02-25 14:46:11 +01:00
|
|
|
void userBeginPreConnection()
|
|
|
|
{
|
2018-05-10 19:55:58 +02:00
|
|
|
|
2018-02-25 14:46:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void userBegin()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void userLoop()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|