2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/Commands/Collector/CollectTote.cpp
2015-02-08 12:26:35 -05:00

22 lines
574 B
C++

#include "CollectTote.h"
CollectTote::CollectTote() : Command("CollectTote"){
Requires(DentRobot::collector);
}
void CollectTote::Initialize(){
SetTimeout(2.0);
}
void CollectTote::Execute(){
//TODO check this value to move the motors in the right direction
DentRobot::collector->MoveRollers(-(-DentRobot::oi->GetLeftStick()->GetRawAxis(3)+1.0)/2);
}
bool CollectTote::IsFinished(){
return DentRobot::collector->BoxCollected();
}
void CollectTote::End(){
DentRobot::collector->MoveRollers(0.0);
}
void CollectTote::Interrupted(){
End();
}
// vim: ts=2:sw=2:et