2
0
mirror of https://github.com/team2059/Dent synced 2024-12-28 21:02:30 -05:00
dent/Commands/Collector/RollVar.h

47 lines
882 B
C
Raw Normal View History

2015-03-21 10:24:33 -04:00
#ifndef RollVar_H
#define RollVar_H
#include "Commands/Command.h"
#include "../../DentRobot.h"
#include "../../DentRobot.h"
#include "WPILib.h"
/**
* @brief Rolls collector motors based on button 7
*/
2015-07-31 12:52:15 -04:00
class RollVar: public Command {
private:
double speed; //<! Speed multiplier of the collector
public:
/**
* @brief Constructs RollVar
*
* @param speedVal Speed control of the collector
*/
RollVar(double speedVal);
/**
* @brief Initializes the class
*/
void Initialize();
/**
* @brief Rolls the collector motors in variable speeds
*/
void Execute();
/**
* @brief Checks if the command is finished
*
* @return True only if the timeout was reached
*/
bool IsFinished();
/**
* @brief Sets the collector to stop
*/
void End();
/**
* @brief Calls End()
*/
void Interrupted();
2015-03-21 10:24:33 -04:00
};
#endif
// vim: ts=2:sw=2:et