Arduino Sim Racing Library v2.0.0
Loading...
Searching...
No Matches
LogitechShifter_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) 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#include <SimRacing.h>
30
31// Power (VCC): DE-9 pin 9
32// Ground (GND): DE-9 pin 6
33// Note: DE-9 pin 3 (CS) needs to be pulled-up to VCC!
34const int Pin_ShifterX = A0; // DE-9 pin 4
35const int Pin_ShifterY = A2; // DE-9 pin 8
36const int Pin_ShifterRev = 2; // DE-9 pin 2
37
38// This pin requires an extra resistor! If you have made the proper
39// connections, change the pin number to the one you're using
40const int Pin_ShifterDetect = SimRacing::UnusedPin; // DE-9 pin 7, requires pull-down resistor
41
43 Pin_ShifterX, Pin_ShifterY,
44 Pin_ShifterRev,
45 Pin_ShifterDetect
46);
47//SimRacing::LogitechShifter shifter = SimRacing::CreateShieldObject<SimRacing::LogitechShifter, 2>();
48
49const unsigned long PrintSpeed = 1500; // ms
50unsigned long lastPrint = 0;
51
52
53void setup() {
54 shifter.begin();
55
56 // if you have one, your calibration line should go here
57
58 Serial.begin(115200);
59 while (!Serial); // wait for connection to open
60
61 Serial.println("Starting...");
62}
63
64void loop() {
65 // send some serial data to run conversational calibration
66 if (Serial.read() != -1) {
67 shifter.serialCalibration();
68 delay(2000);
69 }
70
71 shifter.update();
72
73 if (shifter.gearChanged()) {
74 Serial.print("Shifted into ");
75 Serial.print(shifter.getGearString());
76 Serial.print(" [");
77 Serial.print(shifter.getGear());
78 Serial.print("]");
79
80 Serial.print(" - XY: (");
81 Serial.print(shifter.getPositionRaw(SimRacing::X));
82 Serial.print(", ");
83 Serial.print(shifter.getPositionRaw(SimRacing::Y));
84 Serial.print(")");
85 Serial.println();
86
87 lastPrint = millis();
88 }
89 else {
90 if(millis() - lastPrint >= PrintSpeed) {
91 Serial.print("Currently in ");
92 Serial.print(shifter.getGearString());
93 Serial.println();
94
95 lastPrint = millis();
96 }
97 }
98}
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 Driving Force shifter.
Definition SimRacing.h:883
bool update()
Perform a poll of the hardware to refresh the class state.
static String getGearString(int gear)
Returns a String that represents the given gear.
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