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

27 lines
618 B
C++
Raw Normal View History

2015-02-10 20:12:41 -05:00
#include "BinRaise.h"
#include "../../DentRobot.h"
#include "../../OI.h"
2015-03-09 07:25:11 -04:00
BinRaise::BinRaise(double timeout): Command("BinRaise"){
2015-03-07 13:27:11 -05:00
SetTimeout(timeout);
2015-02-10 20:12:41 -05:00
}
void BinRaise::Initialize(){
}
void BinRaise::Execute(){
DentRobot::binElevator->Run(1.0);
}
bool BinRaise::IsFinished(){
2015-03-09 07:25:11 -04:00
if(/*!DentRobot::binElevator->GetElevatorTop()||*/IsTimedOut()){
2015-02-10 20:12:41 -05:00
printf("Robot stoped raising. Sensor based? %d\n", !DentRobot::binElevator->GetElevatorTop());
return true;
}else{
return false;
}
}
void BinRaise::End(){
DentRobot::binElevator->Run(0.0f);
}
void BinRaise::Interrupted(){
End();
}
// vim: ts=2:sw=2:et