diff --git a/DriveBase/src/TankDrive.h b/DriveBase/src/TankDrive.h index b41c796..d20d264 100644 --- a/DriveBase/src/TankDrive.h +++ b/DriveBase/src/TankDrive.h @@ -51,7 +51,8 @@ public: } float speed = y * th; - float rot = x; // do some math here to smooth out turning? + + float rot = x; // TODO: do some math here to smooth out turning? dt1->ArcadeDrive(speed, rot, false); dt2->ArcadeDrive(speed, rot, false);