2015-02-08 16:51:35 -05:00
|
|
|
#ifndef TURN_H
|
|
|
|
#define TURN_H
|
|
|
|
|
|
|
|
#include "Commands/Command.h"
|
2015-03-09 10:53:35 -04:00
|
|
|
#include "../../DentRobot.h"
|
2015-02-08 16:51:35 -05:00
|
|
|
#include "../../DentRobot.h"
|
|
|
|
#include "WPILib.h"
|
|
|
|
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Turns the robot
|
|
|
|
*
|
|
|
|
* Turns the robot until a timeout is reached
|
|
|
|
*/
|
2015-02-08 16:51:35 -05:00
|
|
|
class Turn: public Command{
|
|
|
|
public:
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Constructs Turn
|
|
|
|
*
|
2015-03-09 10:07:54 -04:00
|
|
|
* @param timeout Timeout in seconds
|
2015-03-01 17:19:00 -05:00
|
|
|
*/
|
2015-03-09 10:07:54 -04:00
|
|
|
Turn(double timeout);
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Initializes the class
|
|
|
|
*/
|
2015-02-08 16:51:35 -05:00
|
|
|
void Initialize();
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Turns the robot
|
|
|
|
*/
|
2015-02-08 16:51:35 -05:00
|
|
|
void Execute();
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Checks if the command is finished
|
|
|
|
*
|
|
|
|
* @return True only if the timeout was reached
|
|
|
|
*/
|
2015-02-08 16:51:35 -05:00
|
|
|
bool IsFinished();
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Sets the drivetrain to stop
|
|
|
|
*/
|
2015-02-08 16:51:35 -05:00
|
|
|
void End();
|
2015-03-01 17:19:00 -05:00
|
|
|
/**
|
|
|
|
* @brief Calls End()
|
|
|
|
*/
|
2015-02-08 16:51:35 -05:00
|
|
|
void Interrupted();
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
// vim: ts=2:sw=2:et
|