2015-02-02 12:14:27 -05:00
|
|
|
#include "OpenCollector.h"
|
|
|
|
OpenCollector::OpenCollector() : Command("OpenCollector"){
|
2015-02-02 19:56:27 -05:00
|
|
|
Requires(DentRobot::collector);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void OpenCollector::Initialize(){
|
|
|
|
}
|
|
|
|
void OpenCollector::Execute(){
|
2015-02-02 19:56:27 -05:00
|
|
|
//TODO check this value to move the motors in the right direction
|
2015-02-04 11:15:21 -05:00
|
|
|
DentRobot::collector->MoveArms(-0.1);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
bool OpenCollector::IsFinished(){
|
2015-02-02 19:56:27 -05:00
|
|
|
return DentRobot::collector->ArmSensor();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void OpenCollector::End(){
|
2015-02-04 11:15:21 -05:00
|
|
|
DentRobot::collector->MoveArms(0.0f);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
|
|
|
void OpenCollector::Interrupted(){
|
2015-02-02 20:08:04 -05:00
|
|
|
End();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|