Usermod class vars pt2: enabled default value

This commit is contained in:
Ewoud
2023-03-15 18:18:11 +01:00
parent 7337efec02
commit ff6d5136ac
4 changed files with 5 additions and 5 deletions

View File

@@ -219,7 +219,7 @@ void registerUsermods()
#endif
#ifdef USERMOD_DALLASTEMPERATURE
usermods.add(new UsermodTemperature("Temperature"));
usermods.add(new UsermodTemperature("Temperature", true));
#endif
#ifdef USERMOD_SN_PHOTORESISTOR
@@ -385,7 +385,7 @@ void registerUsermods()
#ifdef USERMOD_MPU6050_IMU
usermods.add(new MPU6050Driver("mpu6050-IMU"));
usermods.add(new MPU6050Driver("mpu6050-IMU", true));
#endif
#ifdef USERMOD_GAMES