mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
18 lines
409 B
C++
18 lines
409 B
C++
#include "CloseCollector.h"
|
|
CloseCollector::CloseCollector() : Command("CloseCollector"){
|
|
Requires(DentRobot::collector);
|
|
}
|
|
void CloseCollector::Initialize(){
|
|
SetTimeout(0.5);
|
|
}
|
|
void CloseCollector::Execute(){
|
|
DentRobot::collector->MoveArms(.1);
|
|
}
|
|
bool CloseCollector::IsFinished(){
|
|
return DentRobot::collector->ArmSensor();
|
|
}
|
|
void CloseCollector::End(){
|
|
}
|
|
void CloseCollector::Interrupted(){
|
|
}
|