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

45 lines
757 B
C
Raw Permalink Normal View History

2015-01-17 12:55:51 -05:00
#ifndef DRIVE_H
#define DRIVE_H
#include "Commands/Command.h"
#include "../../DentRobot.h"
#include "../../DentRobot.h"
2015-01-17 12:55:51 -05:00
#include "WPILib.h"
2015-03-01 17:19:00 -05:00
/**
* @brief Drives the robot with a joystick
*
2015-03-10 19:49:57 -04:00
* Uses mecanum drive
2015-03-01 17:19:00 -05:00
*/
2015-01-17 12:55:51 -05:00
class Drive: public Command{
public:
2015-03-01 17:19:00 -05:00
/**
* @brief Constructs Drive
*/
2015-01-17 12:55:51 -05:00
Drive();
2015-03-01 17:19:00 -05:00
/**
* @brief Initializes the class
*/
2015-01-17 12:55:51 -05:00
void Initialize();
2015-03-01 17:19:00 -05:00
/**
* @brief Drives the robot with joysticks from OI
*/
2015-01-17 12:55:51 -05:00
void Execute();
2015-03-01 17:19:00 -05:00
/**
* @brief Checks if the command is finished
*
* @return False
*/
2015-01-17 12:55:51 -05:00
bool IsFinished();
2015-03-01 17:19:00 -05:00
/**
* @brief Ends the command
*/
2015-01-17 12:55:51 -05:00
void End();
2015-03-01 17:19:00 -05:00
/**
* @brief Calls End()
*/
2015-01-17 12:55:51 -05:00
void Interrupted();
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et