36const int Pin_ShifterX = A0;
37const int Pin_ShifterY = A2;
39const int Pin_ShifterLatch = 5;
40const int Pin_ShifterClock = 6;
41const int Pin_ShifterData = 7;
56 Pin_ShifterX, Pin_ShifterY,
57 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
58 Pin_ShifterLED, Pin_ShifterDetect
64const bool SendAnalogAxis =
false;
66const int Gears[] = { 1, 2, 3, 4, 5, 6, -1 };
67const int NumGears =
sizeof(Gears) /
sizeof(Gears[0]);
70const ShifterButton Buttons[] = {
71 ShifterButton::BUTTON_SOUTH,
72 ShifterButton::BUTTON_EAST,
73 ShifterButton::BUTTON_WEST,
74 ShifterButton::BUTTON_NORTH,
75 ShifterButton::BUTTON_1,
76 ShifterButton::BUTTON_2,
77 ShifterButton::BUTTON_3,
78 ShifterButton::BUTTON_4,
80const int NumButtons =
sizeof(Buttons) /
sizeof(Buttons[0]);
82const int ADC_Max = 1023;
85 JOYSTICK_DEFAULT_REPORT_ID,
86 JOYSTICK_TYPE_JOYSTICK,
87 NumGears + NumButtons + 2,
89 SendAnalogAxis, SendAnalogAxis,
90 false,
false,
false,
false,
false,
false,
false,
false,
false);
100 Joystick.begin(
false);
101 Joystick.setXAxisRange(0, ADC_Max);
102 Joystick.setYAxisRange(ADC_Max, 0);
108 bool dataChanged = shifter.
update();
110 if (dataChanged || SendAnalogAxis ==
true) {
115void updateJoystick() {
118 int currentButton = 0;
121 for (
int i = 0; i < NumGears; i++) {
122 if (shifter.
getGear() == Gears[i]) {
123 Joystick.pressButton(currentButton);
126 Joystick.releaseButton(currentButton);
133 if (SendAnalogAxis ==
true) {
134 int x = shifter.
getPosition(SimRacing::X, 0, ADC_Max);
135 int y = shifter.
getPosition(SimRacing::Y, 0, ADC_Max);
136 Joystick.setXAxis(x);
137 Joystick.setYAxis(y);
141 for (
int i = 0; i < NumButtons; i++) {
142 bool state = shifter.getButton(Buttons[i]);
143 Joystick.setButton(currentButton, state);
149 int angle = shifter.getDpadAngle();
150 Joystick.setHatSwitch(0, angle);
153 bool shiftUp = shifter.getShiftUp();
154 Joystick.setButton(currentButton, shiftUp);
157 bool shiftDown = shifter.getShiftDown();
158 Joystick.setButton(currentButton, shiftDown);
162 Joystick.sendState();
Header file for the Sim Racing Library.
const PinNum UnusedPin
Dummy pin number signaling that a pin is unused and can be safely ignored.
virtual void begin()
Initializes the hardware pins for reading the gear states.
long getPosition(Axis ax, long rMin=AnalogInput::Min, long rMax=AnalogInput::Max) const
Retrieves the buffered position for the analog axis, rescaled to a nominal range using the calibratio...
Interface with the Logitech G25 shifter.
Button
Enumeration of button values.
bool update()
Perform a poll of the hardware to refresh the class state.
Gear getGear() const
Returns the currently selected gear.