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

23 lines
617 B
C++
Raw Normal View History

2015-02-13 19:40:23 -05:00
#include "RollOut.h"
RollOut::RollOut() : Command("RollOut"){
2015-02-02 20:43:22 -05:00
Requires(DentRobot::collector);
}
2015-02-13 19:40:23 -05:00
void RollOut::Initialize(){
2015-02-06 20:38:02 -05:00
SetTimeout(2.0);
}
2015-02-13 19:40:23 -05:00
void RollOut::Execute(){
2015-02-02 20:43:22 -05:00
//TODO check this value to move the motors in the right direction
2015-02-06 20:38:02 -05:00
// Devide by 2 twice because this speed should be half the collector speed
DentRobot::collector->MoveRollers((-DentRobot::oi->GetLeftStick()->GetRawAxis(3)+1.0)/2/2);
}
2015-02-13 19:40:23 -05:00
bool RollOut::IsFinished(){
2015-02-02 20:43:22 -05:00
return DentRobot::collector->BoxCollected();
}
2015-02-13 19:40:23 -05:00
void RollOut::End(){
DentRobot::collector->MoveRollers(0.0f);
}
2015-02-13 19:40:23 -05:00
void RollOut::Interrupted(){
2015-02-02 20:08:04 -05:00
End();
}
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et