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

19 lines
300 B
C
Raw Normal View History

#ifndef OI_H
#define OI_H
#include "WPILib.h"
#include "Commands/Command.h"
class OI
{
2015-01-16 20:12:48 -05:00
private:
2015-01-17 12:21:16 -05:00
Joystick *leftStick, *rightStick;
2015-01-16 20:12:48 -05:00
public:
OI();
2015-01-17 12:21:16 -05:00
Joystick* GetRightStick();
Joystick* GetLeftStick();
2015-02-13 21:41:38 -05:00
Command *raise, *lower, *binLower, *binRaise;
};
#endif
2015-02-08 12:26:15 -05:00
// vim: ts=2:sw=2:et