34const int Pin_ShifterX = A0;
35const int Pin_ShifterY = A2;
36const int Pin_ShifterRev = 2;
43 Pin_ShifterX, Pin_ShifterY,
49const unsigned long PrintSpeed = 1500;
50unsigned long lastPrint = 0;
61 Serial.println(
"Starting...");
66 if (Serial.read() != -1) {
74 Serial.print(
"Shifted into ");
77 Serial.print(shifter.
getGear());
80 Serial.print(
" - XY: (");
90 if(millis() - lastPrint >= PrintSpeed) {
91 Serial.print(
"Currently in ");
Header file for the Sim Racing Library.
const PinNum UnusedPin
Dummy pin number signaling that a pin is unused and can be safely ignored.
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.
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.
bool gearChanged() const
Checks whether the current gear has changed since the last update.