mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
18 lines
444 B
C++
18 lines
444 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(){
|
|
}
|