2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Collector/OpenCollector.cpp

20 lines
494 B
C++
Raw Normal View History

#include "OpenCollector.h"
OpenCollector::OpenCollector() : Command("OpenCollector"){
2015-02-02 19:56:27 -05:00
Requires(DentRobot::collector);
}
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
DentRobot::collector->MoveArms(-0.1);
}
bool OpenCollector::IsFinished(){
2015-02-02 19:56:27 -05:00
return DentRobot::collector->ArmSensor();
}
void OpenCollector::End(){
DentRobot::collector->MoveArms(0.0f);
}
void OpenCollector::Interrupted(){
2015-02-02 20:08:04 -05:00
End();
}