14 lines
281 B
C++
14 lines
281 B
C++
|
#include "wled.h"
|
||
|
/*
|
||
|
* Register your v2 usermods here!
|
||
|
*/
|
||
|
#ifdef USERMOD_SN_PHOTORESISTOR
|
||
|
#include "../usermods/SN_Photoresistor/usermod_sn_photoresistor.h"
|
||
|
#endif
|
||
|
|
||
|
void registerUsermods()
|
||
|
{
|
||
|
#ifdef USERMOD_SN_PHOTORESISTOR
|
||
|
usermods.add(new Usermod_SN_Photoresistor());
|
||
|
#endif
|
||
|
}
|