2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Autonomous/AutoDrive.cpp

25 lines
665 B
C++
Raw Normal View History

2015-02-06 13:45:01 -05:00
#include "AutoDrive.h"
#include "../../DentRobot.h"
2015-02-06 20:38:02 -05:00
// Drive for a short while then stop. Just for testing
2015-02-21 08:43:19 -05:00
AutoDrive::AutoDrive(double duration, double p=-0.75) : Command("AutoDrive"){
2015-02-06 13:45:01 -05:00
Requires(DentRobot::drivetrain);
2015-02-21 08:43:19 -05:00
SetTimeout(duration);
2015-02-14 13:36:50 -05:00
power=p;
2015-02-06 13:45:01 -05:00
}
void AutoDrive::Initialize(){
}
void AutoDrive::Execute(){
//X axis, Y axis, Z axis, sensitivity, speed threshold (usually throttle), gyro
2015-02-21 08:43:19 -05:00
DentRobot::drivetrain->DriveMecanum(0.0,power,0.0,0.9,0.0);
2015-02-06 13:45:01 -05:00
}
bool AutoDrive::IsFinished(){
2015-02-07 17:04:16 -05:00
return IsTimedOut();
2015-02-06 13:45:01 -05:00
}
void AutoDrive::End(){
DentRobot::drivetrain->DriveMecanum(0.0,0.0,0.0,0.9,0.0);
2015-02-06 13:45:01 -05:00
}
void AutoDrive::Interrupted(){
End();
}
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et