2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00
dent/Commands/CloseCollector.cpp

19 lines
418 B
C++
Raw Normal View History

#include "CloseCollector.h"
CloseCollector::CloseCollector() : Command("CloseCollector"){
Requires(DentRobot::collector);
}
void CloseCollector::Initialize(){
2015-02-02 19:56:27 -05:00
SetTimeout(0.5);
}
void CloseCollector::Execute(){
DentRobot::collector->MoveArms(.1);
}
bool CloseCollector::IsFinished(){
2015-02-02 19:56:27 -05:00
return DentRobot::collector->ArmSensor();
}
void CloseCollector::End(){
}
void CloseCollector::Interrupted(){
2015-02-02 20:08:04 -05:00
End();
}