Arduino Sim Racing Library v2.0.0
Loading...
Searching...
No Matches
LogitechShifter_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) 2022 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
29// This example requires the Arduino Joystick Library
30// Download Here: https://github.com/MHeironimus/ArduinoJoystickLibrary
31
32#include <SimRacing.h>
33#include <Joystick.h>
34
35// Set this option to 'true' to send the shifter's X/Y position
36// as a joystick. This is not needed for most games.
37const bool SendAnalogAxis = false;
38
39// Set this option to 'true' to send the raw state of the reverse
40// trigger as its own button. This is not needed for any racing
41// games, but can be useful for custom controller purposes.
42const bool SendReverseRaw = false;
43
44// Power (VCC): DE-9 pin 9
45// Ground (GND): DE-9 pin 6
46// Note: DE-9 pin 3 (CS) needs to be pulled-up to VCC!
47const int Pin_ShifterX = A0; // DE-9 pin 4
48const int Pin_ShifterY = A2; // DE-9 pin 8
49const int Pin_ShifterRev = 2; // DE-9 pin 2
50
51// This pin requires an extra resistor! If you have made the proper
52// connections, change the pin number to the one you're using
53const int Pin_ShifterDetect = SimRacing::UnusedPin; // DE-9 pin 7, requires pull-down resistor
54
56 Pin_ShifterX, Pin_ShifterY,
57 Pin_ShifterRev,
58 Pin_ShifterDetect
59);
60//SimRacing::LogitechShifter shifter = SimRacing::CreateShieldObject<SimRacing::LogitechShifter, 2>();
61
62const int Gears[] = { 1, 2, 3, 4, 5, 6, -1 };
63const int NumGears = sizeof(Gears) / sizeof(Gears[0]);
64
65const int ADC_Max = 1023; // 10-bit on AVR
66
67Joystick_ Joystick(
68 JOYSTICK_DEFAULT_REPORT_ID, // default report (no additional pages)
69 JOYSTICK_TYPE_JOYSTICK, // so that this shows up in Windows joystick manager
70 NumGears + SendReverseRaw, // number of buttons (7 gears: reverse and 1-6)
71 0, // number of hat switches (none)
72 SendAnalogAxis, SendAnalogAxis, // include X and Y axes for analog output, if set above
73 false, false, false, false, false, false, false, false, false); // no other axes
74
75void updateJoystick(); // forward-declared function for non-Arduino environments
76
77
78void setup() {
79 shifter.begin();
80
81 // if you have one, your calibration line should go here
82
83 Joystick.begin(false); // 'false' to disable auto-send
84 Joystick.setXAxisRange(0, ADC_Max);
85 Joystick.setYAxisRange(ADC_Max, 0); // invert axis so 'up' is up
86
87 updateJoystick(); // send initial state
88}
89
90void loop() {
91 shifter.update();
92
93 if (SendAnalogAxis == true || shifter.gearChanged()) {
94 updateJoystick();
95 }
96}
97
98void updateJoystick() {
99 // set the buttons corresponding to the gears
100 for (int i = 0; i < NumGears; i++) {
101 if (shifter.getGear() == Gears[i]) {
102 Joystick.pressButton(i);
103 }
104 else {
105 Joystick.releaseButton(i);
106 }
107 }
108
109 // set the analog axes (if the option is set)
110 if (SendAnalogAxis == true) {
111 int x = shifter.getPosition(SimRacing::X, 0, ADC_Max);
112 int y = shifter.getPosition(SimRacing::Y, 0, ADC_Max);
113 Joystick.setXAxis(x);
114 Joystick.setYAxis(y);
115 }
116
117 // set the reverse button (if the option is set)
118 if (SendReverseRaw == true) {
119 bool reverseState = shifter.getReverseButton();
120 Joystick.setButton(NumGears, reverseState); // "NumGears" is the 0-indexed max gear + 1
121 }
122
123 Joystick.sendState();
124}
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
bool getReverseButton() const
Checks the current state of the "reverse" button at the bottom of the shift column.
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 Driving Force shifter.
Definition SimRacing.h:883
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
bool gearChanged() const
Checks whether the current gear has changed since the last update.
Definition SimRacing.h:572