2
0
mirror of https://github.com/team2059/Dent synced 2024-12-18 20:52:29 -05:00
dent/Commands/Test/CheckDrive.h

46 lines
714 B
C
Raw Normal View History

2015-02-07 09:17:20 -05:00
#ifndef CHECKDRIVE_H
#define CHECKDRIVE_H
#include "Commands/Command.h"
#include "../../CommandBase.h"
#include "../../DentRobot.h"
#include "WPILib.h"
2015-03-01 17:19:00 -05:00
/**
* @brief TODO
*/
2015-02-07 09:17:20 -05:00
class CheckDrive: public CommandGroup{
private:
2015-03-02 08:28:03 -05:00
int motor; //<! TODO
2015-02-07 09:17:20 -05:00
public:
2015-03-01 17:19:00 -05:00
/**
* @brief TODO
*
* @param int
*/
2015-02-07 09:17:20 -05:00
CheckDrive(int);
2015-03-01 17:19:00 -05:00
/**
* @brief Initializes the class
*/
2015-02-07 09:17:20 -05:00
void Initialize();
2015-03-01 17:19:00 -05:00
/**
* @brief TODO
*/
2015-02-07 09:17:20 -05:00
void Execute();
2015-03-01 17:19:00 -05:00
/**
* @brief Checks if the command is finished
*
* @return TODO
*/
2015-02-07 09:17:20 -05:00
bool IsFinished();
2015-03-01 17:19:00 -05:00
/**
* @brief TODO
*/
2015-02-07 09:17:20 -05:00
void End();
2015-03-01 17:19:00 -05:00
/**
* @brief Calls End()
*/
2015-02-07 09:17:20 -05:00
void Interrupted();
};
#endif