mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
26 lines
694 B
C++
26 lines
694 B
C++
#include "AutoDrive.h"
|
|
#include "../../DentRobot.h"
|
|
// Drive for a short while then stop. Just for testing
|
|
AutoDrive::AutoDrive(double duration, double xtmp=0, double ytmp=-0.75) : Command("AutoDrive"){
|
|
Requires(DentRobot::drivetrain);
|
|
SetTimeout(duration);
|
|
x=xtmp;
|
|
y=ytmp;
|
|
}
|
|
void AutoDrive::Initialize(){
|
|
}
|
|
void AutoDrive::Execute(){
|
|
//X axis, Y axis, Z axis, sensitivity, speed threshold (usually throttle), gyro
|
|
DentRobot::drivetrain->DriveMecanum(x, y, 0.0, 0.9, 0.0);
|
|
}
|
|
bool AutoDrive::IsFinished(){
|
|
return IsTimedOut();
|
|
}
|
|
void AutoDrive::End(){
|
|
DentRobot::drivetrain->DriveMecanum(0.0, 0.0, 0.0, 0.9, 0.0);
|
|
}
|
|
void AutoDrive::Interrupted(){
|
|
End();
|
|
}
|
|
// vim: ts=2:sw=2:et
|