mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
27 lines
534 B
C++
27 lines
534 B
C++
#include "Lower.h"
|
|
#include "../../DentRobot.h"
|
|
#include "../../OI.h"
|
|
Lower::Lower(double timeout, bool useSoftLimits, double liftSpeed): Command("Lower") {
|
|
SetTimeout(timeout);
|
|
softLimits=useSoftLimits;
|
|
speed=liftSpeed;
|
|
}
|
|
void Lower::Initialize() {}
|
|
void Lower::Execute() {
|
|
DentRobot::elevator->Run(speed);
|
|
}
|
|
bool Lower::IsFinished() {
|
|
if(IsTimedOut()) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
void Lower::End() {
|
|
DentRobot::elevator->Run(0.0f);
|
|
}
|
|
void Lower::Interrupted() {
|
|
End();
|
|
}
|
|
// vim: ts=2:sw=2:et
|