2015-01-16 19:29:55 -05:00
|
|
|
#include "Lower.h"
|
2015-01-17 13:28:27 -05:00
|
|
|
#include "../DentRobot.h"
|
2015-01-17 12:55:51 -05:00
|
|
|
Lower::Lower() : Command("Lower"){
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
void Lower::Initialize(){
|
|
|
|
}
|
|
|
|
void Lower::Execute(){
|
2015-01-17 13:28:27 -05:00
|
|
|
DentRobot::elevator->Run(-0.4f);
|
2015-01-16 19:29:55 -05:00
|
|
|
}
|
|
|
|
bool Lower::IsFinished(){
|
2015-01-17 13:28:27 -05:00
|
|
|
// 0.1f is a placeholder for the min elevator value
|
|
|
|
return DentRobot::elevator->GetPotValue()>=0.1f;
|
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
|
|
|
}
|