37const bool SendAnalogAxis =
false;
42const bool SendReverseRaw =
false;
47const int Pin_ShifterX = A0;
48const int Pin_ShifterY = A2;
49const int Pin_ShifterRev = 2;
56 Pin_ShifterX, Pin_ShifterY,
62const int Gears[] = { 1, 2, 3, 4, 5, 6, -1 };
63const int NumGears =
sizeof(Gears) /
sizeof(Gears[0]);
65const int ADC_Max = 1023;
68 JOYSTICK_DEFAULT_REPORT_ID,
69 JOYSTICK_TYPE_JOYSTICK,
70 NumGears + SendReverseRaw,
72 SendAnalogAxis, SendAnalogAxis,
73 false,
false,
false,
false,
false,
false,
false,
false,
false);
83 Joystick.begin(
false);
84 Joystick.setXAxisRange(0, ADC_Max);
85 Joystick.setYAxisRange(ADC_Max, 0);
93 if (SendAnalogAxis ==
true || shifter.
gearChanged()) {
98void updateJoystick() {
100 for (
int i = 0; i < NumGears; i++) {
101 if (shifter.
getGear() == Gears[i]) {
102 Joystick.pressButton(i);
105 Joystick.releaseButton(i);
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);
118 if (SendReverseRaw ==
true) {
120 Joystick.setButton(NumGears, reverseState);
123 Joystick.sendState();
Header file for the Sim Racing Library.
const PinNum UnusedPin
Dummy pin number signaling that a pin is unused and can be safely ignored.
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.
bool update()
Perform a poll of the hardware to refresh the class state.
Gear getGear() const
Returns the currently selected gear.
bool gearChanged() const
Checks whether the current gear has changed since the last update.