mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
18 lines
439 B
C++
18 lines
439 B
C++
#include "CollectTote.h"
|
|
CollectTote::CollectTote() : Command("CollectTote"){
|
|
Requires(DentRobot::collector);
|
|
}
|
|
void CollectTote::Initialize(){
|
|
}
|
|
void CollectTote::Execute(){
|
|
//TODO check this value to move the motors in the right direction
|
|
DentRobot::collector->MoveRollers(-1);
|
|
}
|
|
bool CollectTote::IsFinished(){
|
|
return DentRobot::collector->BoxCollected();
|
|
}
|
|
void CollectTote::End(){
|
|
}
|
|
void CollectTote::Interrupted(){
|
|
}
|