mirror of
https://github.com/team2059/Dent
synced 2024-12-28 21:02:30 -05:00
24 lines
675 B
C++
24 lines
675 B
C++
#include "RollOut.h"
|
|
RollOut::RollOut(double timeout): Command("RollOut"){
|
|
Requires(DentRobot::collector);
|
|
SetTimeout(timeout);
|
|
}
|
|
void RollOut::Initialize(){
|
|
}
|
|
void RollOut::Execute(){
|
|
//TODO check this value to move the motors in the right direction
|
|
// Divide by 2 twice because this speed should be half the collector speed
|
|
DentRobot::collector->MoveRollers(-DentRobot::oi->GetLeftThrottle() * 0.8);
|
|
SmartDashboard::PutNumber("DriveThrottle", -DentRobot::oi->GetLeftThrottle());
|
|
}
|
|
bool RollOut::IsFinished(){
|
|
return IsTimedOut();
|
|
}
|
|
void RollOut::End(){
|
|
DentRobot::collector->MoveRollers(0.0f);
|
|
}
|
|
void RollOut::Interrupted(){
|
|
End();
|
|
}
|
|
// vim: ts=2:sw=2:et
|