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

24 lines
547 B
C++
Raw Normal View History

#include "Turn.h"
#include "../../DentRobot.h"
2015-07-31 12:52:15 -04:00
Turn::Turn(double timeout): Command("Turn") {
Requires(DentRobot::drivetrain);
2015-03-07 13:27:11 -05:00
SetTimeout(timeout);
}
2015-07-31 12:52:15 -04:00
void Turn::Initialize() {
}
2015-07-31 12:52:15 -04:00
void Turn::Execute() {
2015-03-10 20:14:38 -04:00
//X axis, Y axis, Z axis, sensitivity, speed threshold (usually throttle)
2015-09-17 15:59:58 -04:00
DentRobot::drivetrain->DriveArcade(0.0, 0.0, 0.6, 0.9);
}
2015-07-31 12:52:15 -04:00
bool Turn::IsFinished() {
return IsTimedOut();
}
2015-07-31 12:52:15 -04:00
void Turn::End() {
// Stop driving
2015-09-17 15:59:58 -04:00
DentRobot::drivetrain->DriveArcade(0.0, 0.0, 0.0, 0.9);
}
2015-07-31 12:52:15 -04:00
void Turn::Interrupted() {
End();
}
// vim: ts=2:sw=2:et