2015-01-16 19:29:55 -05:00
|
|
|
#include "Raise.h"
|
2015-02-03 15:55:11 -05:00
|
|
|
#include "../../DentRobot.h"
|
2015-02-04 20:57:33 -05:00
|
|
|
#include "../../OI.h"
|
2015-02-07 07:23:10 -05:00
|
|
|
Raise::Raise() : Command("Raise"){
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Raise::Initialize(){
|
2015-02-08 16:51:35 -05:00
|
|
|
SetTimeout(3.0);
|
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-15 08:36:19 -05:00
|
|
|
//if(!DentRobot::elevator->GetElevatorMiddle()){
|
|
|
|
// DentRobot::elevator->stoppedAtSensor=true;
|
|
|
|
//}
|
|
|
|
//if ((DentRobot::elevator->stoppedAtSensor)){
|
|
|
|
// printf("Stopped at the middle sensor\n");
|
|
|
|
// DentRobot::elevator->stoppedAtSensor=false;
|
|
|
|
// return true;
|
|
|
|
//}else if (!DentRobot::elevator->GetElevatorTop()) {
|
|
|
|
if (!DentRobot::elevator->GetElevatorTop()||IsTimedOut()){
|
|
|
|
printf("Robot stopped raising. Sensor based? %d\n", !DentRobot::elevator->GetElevatorTop());
|
2015-02-07 12:50:36 -05:00
|
|
|
return true;
|
2015-02-07 07:23:10 -05:00
|
|
|
}else{
|
2015-02-07 12:50:36 -05:00
|
|
|
return false;
|
2015-02-07 07:23:10 -05:00
|
|
|
}
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Raise::End(){
|
2015-02-12 21:18:48 -05:00
|
|
|
// If the elevator is at the top
|
|
|
|
if(DentRobot::elevator->GetElevatorTop()){
|
|
|
|
DentRobot::elevator->SetUseEncoder(true);
|
|
|
|
}
|
2015-01-17 13:28:27 -05:00
|
|
|
DentRobot::elevator->Run(0.0f);
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Raise::Interrupted(){
|
2015-01-17 13:28:27 -05:00
|
|
|
End();
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
2015-02-08 12:26:15 -05:00
|
|
|
// vim: ts=2:sw=2:et
|