2015-02-02 12:14:27 -05:00
|
|
|
#include "CloseCollector.h"
|
|
|
|
CloseCollector::CloseCollector() : Command("CloseCollector"){
|
2015-02-02 20:43:22 -05:00
|
|
|
Requires(DentRobot::collector);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void CloseCollector::Initialize(){
|
2015-02-08 16:51:35 -05:00
|
|
|
printf("Initialized collector: 0.5\n");
|
|
|
|
SetTimeout(2.5);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void CloseCollector::Execute(){
|
2015-02-08 16:51:35 -05:00
|
|
|
//printf("Closing collector: -0.5f\n");
|
|
|
|
DentRobot::collector->MoveArms(-0.5);
|
|
|
|
//DentRobot::collector->MoveArms(-(-DentRobot::oi->GetRightStick()->GetRawAxis(3)+1)/2*.3/.5);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
bool CloseCollector::IsFinished(){
|
2015-02-08 16:51:35 -05:00
|
|
|
if(DentRobot::collector->ArmSensor()||IsTimedOut()){
|
|
|
|
printf("Stopped Closing: %d, %d\n",DentRobot::collector->ArmSensor(), IsTimedOut());
|
|
|
|
return true;
|
|
|
|
}else{
|
|
|
|
return false;
|
|
|
|
}
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void CloseCollector::End(){
|
2015-02-04 11:15:21 -05:00
|
|
|
DentRobot::collector->MoveArms(0.0f);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void CloseCollector::Interrupted(){
|
2015-02-02 20:08:04 -05:00
|
|
|
End();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-02-08 12:26:15 -05:00
|
|
|
// vim: ts=2:sw=2:et
|