I am relatively new to V5 and was attempting to use the drivetrain class. Initializing it worked fine and I was able to make the drivetrain go forward for a set distance with no trouble; however, my turnFor method never causes the bot to turn the degrees passed in. I have narrowed the source of the problem to the trackWidth parameter passed in when initializing the drivetrain object but cannot determine a proper value. Any help would be appreciated
motor driveLB = motor(PORT11, gearSetting::ratio18_1, false);
motor driveLF = motor(PORT1, gearSetting::ratio18_1, false);
motor driveRB = motor(PORT12, gearSetting::ratio18_1, true);
motor driveRF = motor(PORT2, gearSetting::ratio18_1, true);
motor_group driveLeft = motor_group(driveLB, driveLF);
motor_group driveRight = motor_group(driveRB, driveRF);
drivetrain drive = drivetrain(driveLeft, driveRight ,3.25 * 3.14159265359, 11.5, distanceUnits::in);
// wheels are 3.25 in in diameter and 11.5 in apart (measured from their centers)
// ...
drive.turnFor(turnType::left, 90, rotationUnits::deg);