2015-02-13 19:40:23 -05:00
|
|
|
#include "RollOut.h"
|
2015-07-31 12:52:15 -04:00
|
|
|
RollOut::RollOut(double timeout): Command("RollOut") {
|
2015-02-02 20:43:22 -05:00
|
|
|
Requires(DentRobot::collector);
|
2015-03-07 13:27:11 -05:00
|
|
|
SetTimeout(timeout);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-09-19 17:57:42 -04:00
|
|
|
void RollOut::Initialize() {}
|
2015-07-31 12:52:15 -04:00
|
|
|
void RollOut::Execute() {
|
2015-03-10 19:46:43 -04:00
|
|
|
// Divide by 2 twice because this speed should be half the collector speed
|
2015-02-27 15:44:18 -05:00
|
|
|
DentRobot::collector->MoveRollers(-DentRobot::oi->GetLeftThrottle() * 0.8);
|
2015-03-09 07:25:11 -04:00
|
|
|
SmartDashboard::PutNumber("DriveThrottle", -DentRobot::oi->GetLeftThrottle());
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-07-31 12:52:15 -04:00
|
|
|
bool RollOut::IsFinished() {
|
2015-02-14 16:16:03 -05:00
|
|
|
return IsTimedOut();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-07-31 12:52:15 -04:00
|
|
|
void RollOut::End() {
|
2015-02-04 11:15:21 -05:00
|
|
|
DentRobot::collector->MoveRollers(0.0f);
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-07-31 12:52:15 -04:00
|
|
|
void RollOut::Interrupted() {
|
2015-02-02 20:08:04 -05:00
|
|
|
End();
|
2015-02-02 12:14:27 -05:00
|
|
|
}
|
2015-02-08 12:26:15 -05:00
|
|
|
// vim: ts=2:sw=2:et
|