2
0
mirror of https://github.com/team2059/Dent synced 2024-12-28 21:02:30 -05:00
dent/OI.h

66 lines
1.3 KiB
C
Raw Normal View History

#ifndef OI_H
#define OI_H
#include "WPILib.h"
#include "Commands/Command.h"
2015-03-01 17:19:00 -05:00
/**
* @brief Controls the robot with joysticks
*/
class OI{
2015-01-16 20:12:48 -05:00
private:
2015-03-23 10:52:02 -04:00
Joystick *leftStick, //<! Left joystick
*rightStick; //<! Right joystick
2015-01-16 20:12:48 -05:00
public:
2015-03-01 17:19:00 -05:00
/**
* @brief Constructs OI
*/
2015-01-16 20:12:48 -05:00
OI();
2015-04-06 19:06:00 -04:00
/**
* Raise command
*/
Command *raise,
/**
* @brief Lower command
*/
*lower,
/**
* @brief BinLower command
*/
*binLower,
/**
* @brief BinRaise command
*/
*binRaise;
/**
* @brief ElevatorCycle commandgroup
*/
CommandGroup *cycle;
2015-03-01 17:19:00 -05:00
/**
* @brief Returns the right joystick
*
* @return The right joystick
*/
2015-01-17 12:21:16 -05:00
Joystick* GetRightStick();
2015-03-01 17:19:00 -05:00
/**
* @brief Returns the left joystick
*
* @return The left joystick
*/
2015-01-17 12:21:16 -05:00
Joystick* GetLeftStick();
2015-03-01 17:19:00 -05:00
/**
* @brief Returns the left joystick throttle
*
* @return The left joystick throttle
*/
2015-02-15 17:10:20 -05:00
double GetLeftThrottle();
2015-03-01 17:19:00 -05:00
/**
* @brief Returns the right joystick throttle
*
* @return The right joystick throttle
*/
2015-02-15 17:10:20 -05:00
double GetRightThrottle();
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et