36const int Pin_ShifterX = A0;
37const int Pin_ShifterY = A2;
39const int Pin_ShifterLatch = 5;
40const int Pin_ShifterClock = 6;
41const int Pin_ShifterData = 7;
54 Pin_ShifterX, Pin_ShifterY,
55 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
56 Pin_ShifterLED, Pin_ShifterDetect
62const bool SendAnalogAxis =
false;
64const int Gears[] = { 1, 2, 3, 4, 5, 6, -1 };
65const int NumGears =
sizeof(Gears) /
sizeof(Gears[0]);
68const ShifterButton Buttons[] = {
69 ShifterButton::BUTTON_SOUTH,
70 ShifterButton::BUTTON_EAST,
71 ShifterButton::BUTTON_WEST,
72 ShifterButton::BUTTON_NORTH,
73 ShifterButton::BUTTON_1,
74 ShifterButton::BUTTON_2,
75 ShifterButton::BUTTON_3,
76 ShifterButton::BUTTON_4,
78const int NumButtons =
sizeof(Buttons) /
sizeof(Buttons[0]);
80const int ADC_Max = 1023;
83 JOYSTICK_DEFAULT_REPORT_ID,
84 JOYSTICK_TYPE_JOYSTICK,
85 NumGears + NumButtons,
87 SendAnalogAxis, SendAnalogAxis,
88 false,
false,
false,
false,
false,
false,
false,
false,
false);
98 Joystick.begin(
false);
99 Joystick.setXAxisRange(0, ADC_Max);
100 Joystick.setYAxisRange(ADC_Max, 0);
106 bool dataChanged = shifter.
update();
108 if (dataChanged || SendAnalogAxis ==
true) {
113void updateJoystick() {
116 int currentButton = 0;
119 for (
int i = 0; i < NumGears; i++) {
120 if (shifter.
getGear() == Gears[i]) {
121 Joystick.pressButton(currentButton);
124 Joystick.releaseButton(currentButton);
131 if (SendAnalogAxis ==
true) {
132 int x = shifter.
getPosition(SimRacing::X, 0, ADC_Max);
133 int y = shifter.
getPosition(SimRacing::Y, 0, ADC_Max);
134 Joystick.setXAxis(x);
135 Joystick.setYAxis(y);
139 for (
int i = 0; i < NumButtons; i++) {
140 bool state = shifter.getButton(Buttons[i]);
141 Joystick.setButton(currentButton, state);
147 int angle = shifter.getDpadAngle();
148 Joystick.setHatSwitch(0, angle);
151 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.
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 G27 shifter.
Button
Enumeration of button values.
bool update()
Perform a poll of the hardware to refresh the class state.
Gear getGear() const
Returns the currently selected gear.