mirror of
https://github.com/team2059/Dent
synced 2025-01-07 22:14:14 -05:00
20 lines
485 B
C++
20 lines
485 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.0);
|
|
}
|
|
bool CollectTote::IsFinished(){
|
|
return DentRobot::collector->BoxCollected();
|
|
}
|
|
void CollectTote::End(){
|
|
DentRobot::collector->MoveRollers(0.0f);
|
|
}
|
|
void CollectTote::Interrupted(){
|
|
End();
|
|
}
|