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

27 lines
559 B
C++
Raw Normal View History

2015-01-16 19:29:55 -05:00
#include "Raise.h"
#include "../../DentRobot.h"
#include "../../OI.h"
Raise::Raise() : Command("Raise"){
2015-01-16 19:29:55 -05:00
}
void Raise::Initialize(){
2015-02-07 17:04:16 -05:00
SetTimeout(2.5);
2015-01-16 19:29:55 -05:00
}
void Raise::Execute(){
2015-02-07 17:04:16 -05:00
DentRobot::elevator->Run(1.0);
2015-01-16 19:29:55 -05:00
}
bool Raise::IsFinished(){
2015-02-07 17:04:16 -05:00
if (!DentRobot::elevator->GetElevatorTop()||IsTimedOut()){
printf("Robot stoped raising. Sensor based? %d\n", !DentRobot::elevator->GetElevatorTop());
2015-02-07 12:50:36 -05:00
return true;
}else{
2015-02-07 12:50:36 -05:00
return false;
}
2015-01-16 19:29:55 -05:00
}
void Raise::End(){
DentRobot::elevator->Run(0.0f);
2015-01-16 19:29:55 -05:00
}
void Raise::Interrupted(){
End();
2015-01-16 19:29:55 -05:00
}
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et