2
0
mirror of https://github.com/team2059/Zaphod synced 2024-12-28 20:12:29 -05:00
zaphod/Subsystems/Controller.h

15 lines
288 B
C
Raw Normal View History

#include <WPILib.h>
#include "../Definitions.h"
class JoystickController
{
private:
Joystick *rightJoystick, *leftJoystick;
public:
int leftJoystickValues[];
int rightJoystickValues[];
JoystickController();
void getRightJoystick();
void getLeftJoystick();
};