2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Collector/RollOut.cpp
2015-02-15 17:10:20 -05:00

23 lines
571 B
C++

#include "RollOut.h"
RollOut::RollOut() : Command("RollOut"){
Requires(DentRobot::collector);
}
void RollOut::Initialize(){
SetTimeout(2.0);
}
void RollOut::Execute(){
//TODO check this value to move the motors in the right direction
// Devide by 2 twice because this speed should be half the collector speed
DentRobot::collector->MoveRollers(-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