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"
|
2020-12-14 05:43:28 +01:00
|
|
|
#ifdef USERMOD_BUZZER
|
|
|
|
#include "../usermods/buzzer/usermod_v2_buzzer.h"
|
|
|
|
#endif
|
2020-12-29 19:35:59 +01:00
|
|
|
#ifdef USERMOD_SENSORSTOMQTT
|
|
|
|
#include "usermod_v2_SensorsToMqtt.h"
|
|
|
|
#endif
|
2020-05-28 02:20:02 +02:00
|
|
|
|
2021-02-09 17:15:43 +01:00
|
|
|
#ifdef USERMOD_FOUR_LINE_DISLAY
|
|
|
|
#include "../usermods/usermod_v2_four_line_display/usermod_v2_four_line_display.h"
|
|
|
|
#endif
|
|
|
|
#ifdef USERMOD_ROTARY_ENCODER_UI
|
|
|
|
#include "../usermods/usermod_v2_rotary_encoder_ui/usermod_v2_rotary_encoder_ui.h"
|
|
|
|
#endif
|
|
|
|
#ifdef USERMOD_AUTO_SAVE
|
|
|
|
#include "../usermods/usermod_v2_auto_save/usermod_v2_auto_save.h"
|
|
|
|
#endif
|
|
|
|
|
2021-02-13 01:21:13 +01:00
|
|
|
#ifdef USERMOD_DHT
|
|
|
|
#include "../usermods/DHT/usermod_dht.h"
|
|
|
|
#endif
|
|
|
|
|
2020-05-28 02:20:02 +02:00
|
|
|
void registerUsermods()
|
|
|
|
{
|
2020-12-29 19:35:59 +01:00
|
|
|
/*
|
2020-05-28 02:20:02 +02:00
|
|
|
* Add your usermod class name here
|
|
|
|
* || || ||
|
|
|
|
* \/ \/ \/
|
|
|
|
*/
|
2020-12-29 19:35:59 +01:00
|
|
|
//usermods.add(new MyExampleUsermod());
|
|
|
|
#ifdef USERMOD_DALLASTEMPERATURE
|
2020-09-13 19:26:27 +02:00
|
|
|
usermods.add(new UsermodTemperature());
|
2020-12-29 19:35:59 +01:00
|
|
|
#endif
|
|
|
|
//usermods.add(new UsermodRenameMe());
|
|
|
|
#ifdef USERMOD_BUZZER
|
2020-12-14 05:43:28 +01:00
|
|
|
usermods.add(new BuzzerUsermod());
|
2020-12-29 19:35:59 +01:00
|
|
|
#endif
|
|
|
|
#ifdef USERMOD_SENSORSTOMQTT
|
|
|
|
usermods.add(new UserMod_SensorsToMQTT());
|
|
|
|
#endif
|
2021-02-09 17:15:43 +01:00
|
|
|
#ifdef USERMOD_FOUR_LINE_DISLAY
|
|
|
|
usermods.add(new FourLineDisplayUsermod());
|
|
|
|
#endif
|
|
|
|
#ifdef USERMOD_ROTARY_ENCODER_UI
|
|
|
|
usermods.add(new RotaryEncoderUIUsermod());
|
|
|
|
#endif
|
|
|
|
#ifdef USERMOD_AUTO_SAVE
|
|
|
|
usermods.add(new AutoSaveUsermod());
|
|
|
|
#endif
|
2021-02-13 01:21:13 +01:00
|
|
|
#ifdef USERMOD_DHT
|
|
|
|
usermods.add(new UsermodDHT());
|
|
|
|
#endif
|
2020-05-28 02:20:02 +02:00
|
|
|
}
|