Merge branch 'games-usermod' into mdev

This commit is contained in:
Ewowi
2022-09-27 15:31:11 +02:00
5 changed files with 299 additions and 218 deletions

View File

@@ -145,6 +145,9 @@
#include "../usermods/usermod_v2_weather/usermod_v2_weather.h"
#endif
#ifdef USERMOD_MPU6050_IMU
#include "../usermods/mpu6050_imu/usermod_mpu6050_imu.h"
#endif
#ifdef USERMOD_GAMES
#include "../usermods/usermod_v2_games/usermod_v2_games.h"
#endif
@@ -282,6 +285,11 @@ void registerUsermods()
usermods.add(new WeatherUsermod());
#endif
#ifdef USERMOD_MPU6050_IMU
usermods.add(new MPU6050Driver());
#endif
#ifdef USERMOD_GAMES
usermods.add(new GamesUsermod());
#endif