2020-05-28 02:20:02 +02:00
|
|
|
#include "wled.h"
|
|
|
|
/*
|
|
|
|
* Register your v2 usermods here!
|
|
|
|
* (for v1 usermods using just usermod.cpp, you can ignore this file)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Add/uncomment your usermod filename here (and once more below)
|
|
|
|
* || || ||
|
|
|
|
* \/ \/ \/
|
|
|
|
*/
|
|
|
|
//#include "usermod_v2_example.h"
|
2020-09-13 19:26:27 +02:00
|
|
|
#ifdef USERMOD_DALLASTEMPERATURE
|
|
|
|
#include "../usermods/Temperature/usermod_temperature.h"
|
|
|
|
#endif
|
2020-05-28 02:20:02 +02:00
|
|
|
//#include "usermod_v2_empty.h"
|
|
|
|
|
|
|
|
void registerUsermods()
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Add your usermod class name here
|
|
|
|
* || || ||
|
|
|
|
* \/ \/ \/
|
|
|
|
*/
|
|
|
|
//usermods.add(new MyExampleUsermod());
|
2020-09-13 19:26:27 +02:00
|
|
|
#ifdef USERMOD_DALLASTEMPERATURE
|
|
|
|
usermods.add(new UsermodTemperature());
|
|
|
|
#endif
|
2020-05-28 02:20:02 +02:00
|
|
|
//usermods.add(new UsermodRenameMe());
|
|
|
|
}
|