Arduino Sim Racing Library v2.0.0
Loading...
Searching...
No Matches
LogitechShifterG25_Print.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#include <SimRacing.h>
29
30// Power (VCC): DE-9 pin 9
31// Ground (GND): DE-9 pin 6
32const int Pin_ShifterX = A0; // DE-9 pin 4
33const int Pin_ShifterY = A2; // DE-9 pin 8
34
35const int Pin_ShifterLatch = 5; // DE-9 pin 3
36const int Pin_ShifterClock = 6; // DE-9 pin 7
37const int Pin_ShifterData = 7; // DE-9 pin 2
38
39// This pin is optional! You do not need to connect it in order
40// to read data from the shifter. Connecting it and changing the
41// pin number below will light the power LED. On the G25, I
42// recommend using a 100 Ohm resistor in series to match the
43// brightness of the sequential mode LED.
44const int Pin_ShifterLED = SimRacing::UnusedPin; // DE-9 pin 5
45
46// This pin requies a pull-down resistor! If you have made the proper
47// connections, change the pin number to the one you're using. Setting
48// it will zero data when the shifter is disconnected.
49const int Pin_ShifterDetect = SimRacing::UnusedPin; // DE-9 pin 1
50
52 Pin_ShifterX, Pin_ShifterY,
53 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
54 Pin_ShifterLED, Pin_ShifterDetect
55);
56//SimRacing::LogitechShifterG25 shifter = SimRacing::CreateShieldObject<SimRacing::LogitechShifterG25, 2>();
57
58// alias so we don't need to type so much
59using ShifterButton = SimRacing::LogitechShifterG25::Button;
60
61// forward-declared functions for non-Arduino environments
62void printConditional(bool state, char pressed);
63void printButton(ShifterButton button, char pressed);
64void printShifter();
65
66const unsigned long PrintSpeed = 1500; // ms
67unsigned long lastPrint = 0;
68
69
70void setup() {
71 shifter.begin();
72
73 // if you have one, your calibration line should go here
74
75 Serial.begin(115200);
76 while (!Serial); // wait for connection to open
77
78 Serial.println("Logitech G25 Starting...");
79}
80
81void loop() {
82 // send some serial data to run conversational calibration
83 if (Serial.read() != -1) {
84 shifter.serialCalibration();
85 shifter.serialCalibrationSequential();
86 delay(2000);
87 }
88
89 bool dataChanged = shifter.update();
90
91 // if data has changed, print immediately
92 if (dataChanged) {
93 Serial.print("! ");
94 printShifter();
95 }
96
97 // otherwise, print if we've been idle for awhile
98 if (millis() - lastPrint >= PrintSpeed) {
99 Serial.print(" ");
100 printShifter();
101 }
102}
103
104void printConditional(bool state, char pressed) {
105 if (state == true) {
106 Serial.print(pressed);
107 }
108 else {
109 Serial.print('_');
110 }
111}
112
113void printButton(ShifterButton button, char pressed) {
114 bool state = shifter.getButton(button);
115 printConditional(state, pressed);
116}
117
118void printShifter() {
119 // if in sequential mode, print up/down
120 if (shifter.inSequentialMode()) {
121 Serial.print("S:[");
122 printConditional(shifter.getShiftUp(), '+');
123 printConditional(shifter.getShiftDown(), '-');
124 Serial.print(']');
125 }
126 // otherwise in H-pattern mode, print the gear
127 else {
128 Serial.print("H: [");
129 Serial.print(shifter.getGearChar());
130 Serial.print("]");
131 }
132
133 // print X/Y position of shifter
134 Serial.print(" - XY: (");
135 Serial.print(shifter.getPositionRaw(SimRacing::X));
136 Serial.print(", ");
137 Serial.print(shifter.getPositionRaw(SimRacing::Y));
138 Serial.print(") ");
139
140 // print directional pad
141 printButton(ShifterButton::DPAD_LEFT, '<');
142 printButton(ShifterButton::DPAD_UP, '^');
143 printButton(ShifterButton::DPAD_DOWN, 'v');
144 printButton(ShifterButton::DPAD_RIGHT, '>');
145 Serial.print(' ');
146
147 // print black buttons
148 printButton(ShifterButton::BUTTON_NORTH, 'N');
149 printButton(ShifterButton::BUTTON_SOUTH, 'S');
150 printButton(ShifterButton::BUTTON_EAST, 'E');
151 printButton(ShifterButton::BUTTON_WEST, 'W');
152 Serial.print(' ');
153
154 // print red buttons
155 printButton(ShifterButton::BUTTON_1, '1');
156 printButton(ShifterButton::BUTTON_2, '2');
157 printButton(ShifterButton::BUTTON_3, '3');
158 printButton(ShifterButton::BUTTON_4, '4');
159
160 Serial.println();
161
162 lastPrint = millis();
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
void serialCalibration(Stream &iface=Serial)
Runs an interactive calibration tool using the serial interface.
int getPositionRaw(Axis ax) const
Retrieves the buffered position for the analog axis.
virtual void begin()
Initializes the hardware pins for reading the gear states.
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.
static char getGearChar(int gear)
Returns a character that represents the given gear.