2
0
mirror of https://github.com/team2059/Dent synced 2025-01-07 22:14:14 -05:00

49 lines
860 B
C
Raw Normal View History

#ifndef TURN_H
#define TURN_H
#include "Commands/Command.h"
#include "../../CommandBase.h"
#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
*/
class Turn: public Command{
2015-02-21 13:43:19 +00:00
private:
int degrees;
public:
2015-03-01 17:19:00 -05:00
/**
* @brief Constructs Turn
*
* @param double Timeout in seconds
*/
2015-03-01 16:48:37 -05:00
Turn(double);
2015-03-01 17:19:00 -05:00
/**
* @brief Initializes the class
*/
void Initialize();
2015-03-01 17:19:00 -05:00
/**
* @brief Turns the robot
*/
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
*/
bool IsFinished();
2015-03-01 17:19:00 -05:00
/**
* @brief Sets the drivetrain to stop
*/
void End();
2015-03-01 17:19:00 -05:00
/**
* @brief Calls End()
*/
void Interrupted();
};
#endif
// vim: ts=2:sw=2:et