-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Autonomous & Drive Commands #11
Comments
DriveStraight(DriveSystem, DistanceInMeters, SpeedPercentPerThrottle) Turn(DriveSystem, Angle, Speed) Arc(DriveSystem, Speed[MetersPerSecond], Angle, Radius) |
Doesn't my drive command cover these? |
Not necessarily. Your drive command is time-based. These are used to move the robot a certain distance or angle, which is much different than running for a specific amount of time. We cannot reliably use a time-based command for distance unless we know our velocity is constant (which it is not). Welcome to the world of physics :) |
Ok. I thought it was constant. |
I am currently working on the commands for simply the driving during autonomous.
The text was updated successfully, but these errors were encountered: