2015-02-08 16:51:35 -05:00
|
|
|
#include "Turn.h"
|
|
|
|
#include "../../DentRobot.h"
|
|
|
|
// Drive for a short while then stop. Just for testing
|
|
|
|
Turn::Turn() : Command("Turn"){
|
|
|
|
Requires(DentRobot::drivetrain);
|
2015-02-15 17:54:59 -05:00
|
|
|
SetTimeout(0.85);
|
2015-02-08 16:51:35 -05:00
|
|
|
}
|
|
|
|
void Turn::Initialize(){
|
|
|
|
}
|
|
|
|
void Turn::Execute(){
|
|
|
|
//X axis, Y axis, Z axis, sensitivity, speed threshold (usually throttle), gyro
|
2015-02-15 17:54:59 -05:00
|
|
|
DentRobot::drivetrain->DriveMecanum(0.0,0.0,1.0,0.9,0.0);
|
2015-02-08 16:51:35 -05:00
|
|
|
}
|
|
|
|
bool Turn::IsFinished(){
|
|
|
|
return IsTimedOut();
|
|
|
|
}
|
|
|
|
void Turn::End(){
|
2015-02-13 22:30:15 -05:00
|
|
|
// Stop driving
|
|
|
|
DentRobot::drivetrain->DriveMecanum(0.0,0.0,0.0,0.9,0.0);
|
2015-02-08 16:51:35 -05:00
|
|
|
}
|
|
|
|
void Turn::Interrupted(){
|
|
|
|
End();
|
|
|
|
}
|
|
|
|
// vim: ts=2:sw=2:et
|