Arduino Sim Racing Library v2.0.0
Loading...
Searching...
No Matches
LogitechShifterG27_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 1
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.
46const int Pin_ShifterLED = SimRacing::UnusedPin; // DE-9 pin 5
47
48// This pin requies a pull-down resistor! If you have made the proper
49// connections, change the pin number to the one you're using. Setting
50// it will zero data when the shifter is disconnected.
51const int Pin_ShifterDetect = SimRacing::UnusedPin; // DE-9 pin 7
52
54 Pin_ShifterX, Pin_ShifterY,
55 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
56 Pin_ShifterLED, Pin_ShifterDetect
57);
58//SimRacing::LogitechShifterG27 shifter = SimRacing::CreateShieldObject<SimRacing::LogitechShifterG27, 2>();
59
60// Set this option to 'true' to send the shifter's X/Y position
61// as a joystick. This is not needed for most games.
62const bool SendAnalogAxis = false;
63
64const int Gears[] = { 1, 2, 3, 4, 5, 6, -1 };
65const int NumGears = sizeof(Gears) / sizeof(Gears[0]);
66
67using ShifterButton = SimRacing::LogitechShifterG27::Button;
68const ShifterButton Buttons[] = {
69 ShifterButton::BUTTON_SOUTH,
70 ShifterButton::BUTTON_EAST,
71 ShifterButton::BUTTON_WEST,
72 ShifterButton::BUTTON_NORTH,
73 ShifterButton::BUTTON_1,
74 ShifterButton::BUTTON_2,
75 ShifterButton::BUTTON_3,
76 ShifterButton::BUTTON_4,
77};
78const int NumButtons = sizeof(Buttons) / sizeof(Buttons[0]);
79
80const int ADC_Max = 1023; // 10-bit on AVR
81
82Joystick_ Joystick(
83 JOYSTICK_DEFAULT_REPORT_ID, // default report (no additional pages)
84 JOYSTICK_TYPE_JOYSTICK, // so that this shows up in Windows joystick manager
85 NumGears + NumButtons, // number of buttons (7 gears: reverse and 1-6, 8 buttons)
86 1, // number of hat switches (1, the directional pad)
87 SendAnalogAxis, SendAnalogAxis, // include X and Y axes for analog output, if set above
88 false, false, false, false, false, false, false, false, false); // no other axes
89
90void updateJoystick(); // forward-declared function for non-Arduino environments
91
92
93void setup() {
94 shifter.begin();
95
96 // if you have one, your calibration line should go here
97
98 Joystick.begin(false); // 'false' to disable auto-send
99 Joystick.setXAxisRange(0, ADC_Max);
100 Joystick.setYAxisRange(ADC_Max, 0); // invert axis so 'up' is up
101
102 updateJoystick(); // send initial state
103}
104
105void loop() {
106 bool dataChanged = shifter.update();
107
108 if (dataChanged || SendAnalogAxis == true) {
109 updateJoystick();
110 }
111}
112
113void updateJoystick() {
114 // keep track of which button we're updating
115 // in the joystick output
116 int currentButton = 0;
117
118 // set the buttons corresponding to the gears
119 for (int i = 0; i < NumGears; i++) {
120 if (shifter.getGear() == Gears[i]) {
121 Joystick.pressButton(currentButton);
122 }
123 else {
124 Joystick.releaseButton(currentButton);
125 }
126
127 currentButton++;
128 }
129
130 // set the analog axes (if the option is set)
131 if (SendAnalogAxis == true) {
132 int x = shifter.getPosition(SimRacing::X, 0, ADC_Max);
133 int y = shifter.getPosition(SimRacing::Y, 0, ADC_Max);
134 Joystick.setXAxis(x);
135 Joystick.setYAxis(y);
136 }
137
138 // set the buttons
139 for (int i = 0; i < NumButtons; i++) {
140 bool state = shifter.getButton(Buttons[i]);
141 Joystick.setButton(currentButton, state);
142
143 currentButton++;
144 }
145
146 // set the hatswitch (directional pad)
147 int angle = shifter.getDpadAngle();
148 Joystick.setHatSwitch(0, angle);
149
150 // send the updated data via USB
151 Joystick.sendState();
152}
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 G27 shifter.
Definition SimRacing.h:937
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