Add weather usermod

This commit is contained in:
Ewowi
2022-08-09 22:44:44 +02:00
parent a8785570df
commit 4d2cb2016e
7 changed files with 555 additions and 188 deletions

View File

@@ -139,6 +139,10 @@
#include "../usermods/audioreactive/audio_reactive.h"
#endif
#ifdef USERMOD_WEATHER
#include "../usermods/usermod_v2_weather/usermod_v2_weather.h"
#endif
void registerUsermods()
{
/*
@@ -265,4 +269,8 @@ void registerUsermods()
#endif
usermods.add(new AudioReactive());
#endif
#ifdef USERMOD_WEATHER
usermods.add(new WeatherUsermod());
#endif
}