Arduino Sim Racing Library v2.0.0
Loading...
Searching...
No Matches
LogitechShifterG27_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 1
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.
42const int Pin_ShifterLED = SimRacing::UnusedPin; // DE-9 pin 5
43
44// This pin requies a pull-down resistor! If you have made the proper
45// connections, change the pin number to the one you're using. Setting
46// it will zero data when the shifter is disconnected.
47const int Pin_ShifterDetect = SimRacing::UnusedPin; // DE-9 pin 7
48
50 Pin_ShifterX, Pin_ShifterY,
51 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
52 Pin_ShifterLED, Pin_ShifterDetect
53);
54//SimRacing::LogitechShifterG27 shifter = SimRacing::CreateShieldObject<SimRacing::LogitechShifterG27, 2>();
55
56// alias so we don't need to type so much
57using ShifterButton = SimRacing::LogitechShifterG27::Button;
58
59// forward-declared functions for non-Arduino environments
60void printConditional(bool state, char pressed);
61void printButton(ShifterButton button, char pressed);
62void printShifter();
63
64const unsigned long PrintSpeed = 1500; // ms
65unsigned long lastPrint = 0;
66
67
68void setup() {
69 shifter.begin();
70
71 // if you have one, your calibration line should go here
72
73 Serial.begin(115200);
74 while (!Serial); // wait for connection to open
75
76 Serial.println("Logitech G27 Starting...");
77}
78
79void loop() {
80 // send some serial data to run conversational calibration
81 if (Serial.read() != -1) {
82 shifter.serialCalibration();
83 delay(2000);
84 }
85
86 bool dataChanged = shifter.update();
87
88 // if data has changed, print immediately
89 if (dataChanged) {
90 Serial.print("! ");
91 printShifter();
92 }
93
94 // otherwise, print if we've been idle for awhile
95 if (millis() - lastPrint >= PrintSpeed) {
96 Serial.print(" ");
97 printShifter();
98 }
99}
100
101void printConditional(bool state, char pressed) {
102 if (state == true) {
103 Serial.print(pressed);
104 }
105 else {
106 Serial.print('_');
107 }
108}
109
110void printButton(ShifterButton button, char pressed) {
111 bool state = shifter.getButton(button);
112 printConditional(state, pressed);
113}
114
115void printShifter() {
116 // print the H-pattern gear
117 Serial.print("H:[");
118 Serial.print(shifter.getGearChar());
119 Serial.print("]");
120
121 // print X/Y position of shifter
122 Serial.print(" - XY: (");
123 Serial.print(shifter.getPositionRaw(SimRacing::X));
124 Serial.print(", ");
125 Serial.print(shifter.getPositionRaw(SimRacing::Y));
126 Serial.print(") ");
127
128 // print directional pad
129 printButton(ShifterButton::DPAD_LEFT, '<');
130 printButton(ShifterButton::DPAD_UP, '^');
131 printButton(ShifterButton::DPAD_DOWN, 'v');
132 printButton(ShifterButton::DPAD_RIGHT, '>');
133 Serial.print(' ');
134
135 // print black buttons
136 printButton(ShifterButton::BUTTON_NORTH, 'N');
137 printButton(ShifterButton::BUTTON_SOUTH, 'S');
138 printButton(ShifterButton::BUTTON_EAST, 'E');
139 printButton(ShifterButton::BUTTON_WEST, 'W');
140 Serial.print(' ');
141
142 // print red buttons
143 printButton(ShifterButton::BUTTON_1, '1');
144 printButton(ShifterButton::BUTTON_2, '2');
145 printButton(ShifterButton::BUTTON_3, '3');
146 printButton(ShifterButton::BUTTON_4, '4');
147
148 Serial.println();
149
150 lastPrint = millis();
151}
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 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.
static char getGearChar(int gear)
Returns a character that represents the given gear.