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