Arduino Sim Racing Library v2.0.0
Loading...
Searching...
No Matches
LogitechShifterG25_Joystick.ino
1/*
2 * Project Sim Racing Library for Arduino
3 * @author David Madison
4 * @link github.com/dmadison/Sim-Racing-Arduino
5 * @license LGPLv3 - Copyright (c) 2024 David Madison
6 *
7 * This file is part of the Sim Racing Library for Arduino.
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
28// This example requires the Arduino Joystick Library
29// Download Here: https://github.com/MHeironimus/ArduinoJoystickLibrary
30
31#include <SimRacing.h>
32#include <Joystick.h>
33
34// Power (VCC): DE-9 pin 9
35// Ground (GND): DE-9 pin 6
36const int Pin_ShifterX = A0; // DE-9 pin 4
37const int Pin_ShifterY = A2; // DE-9 pin 8
38
39const int Pin_ShifterLatch = 5; // DE-9 pin 3
40const int Pin_ShifterClock = 6; // DE-9 pin 7
41const int Pin_ShifterData = 7; // DE-9 pin 2
42
43// This pin is optional! You do not need to connect it in order
44// to read data from the shifter. Connecting it and changing the
45// pin number below will light the power LED. On the G25, I
46// recommend using a 100 Ohm resistor in series to match the
47// brightness of the sequential mode LED.
48const int Pin_ShifterLED = SimRacing::UnusedPin; // DE-9 pin 5
49
50// This pin requies a pull-down resistor! If you have made the proper
51// connections, change the pin number to the one you're using. Setting
52// it will zero data when the shifter is disconnected.
53const int Pin_ShifterDetect = SimRacing::UnusedPin; // DE-9 pin 1
54
56 Pin_ShifterX, Pin_ShifterY,
57 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
58 Pin_ShifterLED, Pin_ShifterDetect
59);
60//SimRacing::LogitechShifterG25 shifter = SimRacing::CreateShieldObject<SimRacing::LogitechShifterG25, 2>();
61
62// Set this option to 'true' to send the shifter's X/Y position
63// as a joystick. This is not needed for most games.
64const bool SendAnalogAxis = false;
65
66const int Gears[] = { 1, 2, 3, 4, 5, 6, -1 };
67const int NumGears = sizeof(Gears) / sizeof(Gears[0]);
68
69using ShifterButton = SimRacing::LogitechShifterG25::Button;
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,
79};
80const int NumButtons = sizeof(Buttons) / sizeof(Buttons[0]);
81
82const int ADC_Max = 1023; // 10-bit on AVR
83
84Joystick_ Joystick(
85 JOYSTICK_DEFAULT_REPORT_ID, // default report (no additional pages)
86 JOYSTICK_TYPE_JOYSTICK, // so that this shows up in Windows joystick manager
87 NumGears + NumButtons + 2, // number of buttons (7 gears: reverse and 1-6, 8 buttons, 2 sequential gears)
88 1, // number of hat switches (1, the directional pad)
89 SendAnalogAxis, SendAnalogAxis, // include X and Y axes for analog output, if set above
90 false, false, false, false, false, false, false, false, false); // no other axes
91
92void updateJoystick(); // forward-declared function for non-Arduino environments
93
94
95void setup() {
96 shifter.begin();
97
98 // if you have one, your calibration line should go here
99
100 Joystick.begin(false); // 'false' to disable auto-send
101 Joystick.setXAxisRange(0, ADC_Max);
102 Joystick.setYAxisRange(ADC_Max, 0); // invert axis so 'up' is up
103
104 updateJoystick(); // send initial state
105}
106
107void loop() {
108 bool dataChanged = shifter.update();
109
110 if (dataChanged || SendAnalogAxis == true) {
111 updateJoystick();
112 }
113}
114
115void updateJoystick() {
116 // keep track of which button we're updating
117 // in the joystick output
118 int currentButton = 0;
119
120 // set the buttons corresponding to the gears
121 for (int i = 0; i < NumGears; i++) {
122 if (shifter.getGear() == Gears[i]) {
123 Joystick.pressButton(currentButton);
124 }
125 else {
126 Joystick.releaseButton(currentButton);
127 }
128
129 currentButton++;
130 }
131
132 // set the analog axes (if the option is set)
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);
138 }
139
140 // set the buttons
141 for (int i = 0; i < NumButtons; i++) {
142 bool state = shifter.getButton(Buttons[i]);
143 Joystick.setButton(currentButton, state);
144
145 currentButton++;
146 }
147
148 // set the hatswitch (directional pad)
149 int angle = shifter.getDpadAngle();
150 Joystick.setHatSwitch(0, angle);
151
152 // set the sequential shifting buttons
153 bool shiftUp = shifter.getShiftUp();
154 Joystick.setButton(currentButton, shiftUp);
155 currentButton++;
156
157 bool shiftDown = shifter.getShiftDown();
158 Joystick.setButton(currentButton, shiftDown);
159 currentButton++;
160
161 // send the updated data via USB
162 Joystick.sendState();
163}
Header file for the Sim Racing Library.
const PinNum UnusedPin
Dummy pin number signaling that a pin is unused and can be safely ignored.
Definition SimRacing.h:43
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.
Definition SimRacing.h:1123
Button
Enumeration of button values.
Definition SimRacing.h:949
bool update()
Perform a poll of the hardware to refresh the class state.
Gear getGear() const
Returns the currently selected gear.
Definition SimRacing.h:528