2
0
mirror of https://github.com/team2059/Dent synced 2024-12-28 21:02:30 -05:00
dent/Commands/Elevator/Lower.cpp

32 lines
597 B
C++
Raw Normal View History

2015-01-16 19:29:55 -05:00
#include "Lower.h"
#include "../../DentRobot.h"
#include "../../OI.h"
2015-07-31 12:52:15 -04:00
Lower::Lower(double timeout, bool useSoftLimits): Command("Lower") {
2015-03-07 13:27:11 -05:00
SetTimeout(timeout);
softLimits=useSoftLimits;
2015-01-16 19:29:55 -05:00
}
2015-07-31 12:52:15 -04:00
void Lower::Initialize() {
2015-01-16 19:29:55 -05:00
}
2015-07-31 12:52:15 -04:00
void Lower::Execute() {
2015-02-07 17:04:16 -05:00
DentRobot::elevator->Run(-1.0);
2015-01-16 19:29:55 -05:00
}
2015-07-31 12:52:15 -04:00
bool Lower::IsFinished() {
if(softLimits) {
if(!DentRobot::elevator->GetElevatorBottom()) {
return true;
}
}
2015-07-31 12:52:15 -04:00
if(IsTimedOut()) {
2015-02-07 12:50:36 -05:00
return true;
2015-07-31 12:52:15 -04:00
} else {
2015-02-07 12:50:36 -05:00
return false;
}
2015-01-16 19:29:55 -05:00
}
2015-07-31 12:52:15 -04:00
void Lower::End() {
DentRobot::elevator->Run(0.0f);
2015-01-16 19:29:55 -05:00
}
2015-07-31 12:52:15 -04:00
void Lower::Interrupted() {
End();
2015-01-16 19:29:55 -05:00
}
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et