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

51 lines
1.1 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-03-23 10:52:02 -04:00
Command *raise, //<! Raise command
*lower, //<! Lower command
*binLower, //<! BinLower command
*binRaise; //<! BinRaise command
CommandGroup *cycle; //<! ElevatorCycle commandgroup
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