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