mirror of
https://github.com/team2059/Dent
synced 2024-12-18 20:52:29 -05:00
45 lines
757 B
C++
45 lines
757 B
C++
#ifndef DRIVE_H
|
|
#define DRIVE_H
|
|
|
|
#include "Commands/Command.h"
|
|
#include "../../DentRobot.h"
|
|
#include "../../DentRobot.h"
|
|
#include "WPILib.h"
|
|
|
|
/**
|
|
* @brief Drives the robot with a joystick
|
|
*
|
|
* Uses mecanum drive
|
|
*/
|
|
class Drive: public Command{
|
|
public:
|
|
/**
|
|
* @brief Constructs Drive
|
|
*/
|
|
Drive();
|
|
/**
|
|
* @brief Initializes the class
|
|
*/
|
|
void Initialize();
|
|
/**
|
|
* @brief Drives the robot with joysticks from OI
|
|
*/
|
|
void Execute();
|
|
/**
|
|
* @brief Checks if the command is finished
|
|
*
|
|
* @return False
|
|
*/
|
|
bool IsFinished();
|
|
/**
|
|
* @brief Ends the command
|
|
*/
|
|
void End();
|
|
/**
|
|
* @brief Calls End()
|
|
*/
|
|
void Interrupted();
|
|
};
|
|
#endif
|
|
// vim: ts=2:sw=2:et
|