mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
22 lines
484 B
C++
22 lines
484 B
C++
|
#include "AutoDrive.h"
|
||
|
#include <cmath>
|
||
|
#include "../../DentRobot.h"
|
||
|
AutoDrive::AutoDrive() : Command("AutoDrive"){
|
||
|
Requires(DentRobot::drivetrain);
|
||
|
SetTimeout(1.0);
|
||
|
}
|
||
|
void AutoDrive::Initialize(){
|
||
|
}
|
||
|
void AutoDrive::Execute(){
|
||
|
//X axis, Y axis, Z axis, sensitivity, speed threshold (usually throttle), gyro
|
||
|
DentRobot::drivetrain->DriveMecanum(0.5,0,0,0.9,0);
|
||
|
}
|
||
|
bool AutoDrive::IsFinished(){
|
||
|
return false;
|
||
|
}
|
||
|
void AutoDrive::End(){
|
||
|
}
|
||
|
void AutoDrive::Interrupted(){
|
||
|
End();
|
||
|
}
|