First b15 daily build: add fastled usermod

This commit is contained in:
Ewoud
2023-04-02 15:50:09 +02:00
parent 27e8915106
commit 3dd7873143
9 changed files with 381 additions and 6 deletions

View File

@@ -205,6 +205,9 @@
#ifdef USERMOD_GAMES
#include "../usermods/usermod_v2_games/usermod_v2_games.h"
#endif
#ifdef USERMOD_FASTLED
#include "../usermods/usermod_v2_fastled/usermod_v2_fastled.h"
#endif
void registerUsermods()
{
@@ -391,4 +394,7 @@ void registerUsermods()
#ifdef USERMOD_GAMES
usermods.add(new GamesUsermod());
#endif
#ifdef USERMOD_GAMES
usermods.add(new FastledUsermod("Fastled", true));
#endif
}