FIX kMaxGearSize value

This commit is contained in:
fastium
2025-01-06 23:00:53 +01:00
parent d0ff3defa1
commit dfd94b647c
5 changed files with 5 additions and 5 deletions

View File

@ -80,7 +80,7 @@ class BikeSystem {
// data member that represents the device for manipulating the gear
GearDevice _gearDevice;
uint8_t _currentGear = bike_computer::kMinGear;
uint8_t _currentGearSize = bike_computer::kMinGearSize;
uint8_t _currentGearSize = bike_computer::kMaxGearSize;
// data member that represents the device for manipulating the pedal rotation
// speed/time
PedalDevice _pedalDevice;