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

18 lines
457 B
C++
Raw Normal View History

#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->ArmsDoneMoving();
}
void OpenCollector::End(){
}
void OpenCollector::Interrupted(){
}