2015-02-02 12:14:27 -05:00
|
|
|
#include "ReleaseTote.h"
|
|
|
|
ReleaseTote::ReleaseTote() : Command("ReleaseTote"){
|
2015-02-02 20:43:22 -05:00
|
|
|
Requires(DentRobot::collector);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void ReleaseTote::Initialize(){
|
2015-02-06 20:38:02 -05:00
|
|
|
SetTimeout(2.0);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void ReleaseTote::Execute(){
|
2015-02-02 20:43:22 -05:00
|
|
|
//TODO check this value to move the motors in the right direction
|
2015-02-04 20:57:33 -05:00
|
|
|
printf("releasing tote\n");
|
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-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
bool ReleaseTote::IsFinished(){
|
2015-02-02 20:43:22 -05:00
|
|
|
return DentRobot::collector->BoxCollected();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void ReleaseTote::End(){
|
2015-02-04 11:15:21 -05:00
|
|
|
DentRobot::collector->MoveRollers(0.0f);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void ReleaseTote::Interrupted(){
|
2015-02-02 20:08:04 -05:00
|
|
|
End();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|