2015-01-16 19:29:55 -05:00
|
|
|
#include "Lower.h"
|
2015-02-03 15:55:11 -05:00
|
|
|
#include "../../DentRobot.h"
|
2015-02-07 07:23:10 -05:00
|
|
|
#include "../../OI.h"
|
2015-01-17 12:55:51 -05:00
|
|
|
Lower::Lower() : Command("Lower"){
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Lower::Initialize(){
|
2015-02-07 12:50:36 -05:00
|
|
|
SetTimeout(2.0);
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Lower::Execute(){
|
2015-02-04 20:57:33 -05:00
|
|
|
DentRobot::elevator->Run((-DentRobot::oi->GetLeftStick()->GetRawAxis(3)+1.0)/2);
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
bool Lower::IsFinished(){
|
2015-02-07 07:23:10 -05:00
|
|
|
if (!DentRobot::dio->Get(DentRobot::dio->ELEVATORBOTTOM) || IsTimedOut()){
|
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 Lower::End(){
|
2015-01-17 13:28:27 -05:00
|
|
|
DentRobot::elevator->Run(0.0f);
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Lower::Interrupted(){
|
2015-01-17 13:28:27 -05:00
|
|
|
End();
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|