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

21 lines
406 B
C++
Raw Normal View History

2015-02-20 15:54:41 -05:00
#include "BinCloseArms.h"
#include "../../DentRobot.h"
#include "../../OI.h"
BinCloseArms::BinCloseArms() : Command("BinCloseArms"){
}
void BinCloseArms::Initialize(){
SetTimeout(0.5);
}
void BinCloseArms::Execute(){
2015-03-01 16:48:37 -05:00
DentRobot::pneumatics->SetOpen(false);
2015-02-20 15:54:41 -05:00
}
bool BinCloseArms::IsFinished(){
return true;
}
void BinCloseArms::End(){
}
void BinCloseArms::Interrupted(){
End();
}
// vim: ts=2:sw=2:et