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

19 lines
453 B
C++

#include "OpenCollector.h"
OpenCollector::OpenCollector() : Command("OpenCollector"){
Requires(DentRobot::collector);
}
void OpenCollector::Initialize(){
}
void OpenCollector::Execute(){
//TODO check this value to move the motors in the right direction
DentRobot::collector->MoveArms(-.1);
}
bool OpenCollector::IsFinished(){
return DentRobot::collector->ArmSensor();
}
void OpenCollector::End(){
}
void OpenCollector::Interrupted(){
End();
}