32const int Pin_ShifterX = A0;
33const int Pin_ShifterY = A2;
35const int Pin_ShifterLatch = 5;
36const int Pin_ShifterClock = 6;
37const int Pin_ShifterData = 7;
50 Pin_ShifterX, Pin_ShifterY,
51 Pin_ShifterLatch, Pin_ShifterClock, Pin_ShifterData,
52 Pin_ShifterLED, Pin_ShifterDetect
60void printConditional(
bool state,
char pressed);
61void printButton(ShifterButton button,
char pressed);
64const unsigned long PrintSpeed = 1500;
65unsigned long lastPrint = 0;
76 Serial.println(
"Logitech G27 Starting...");
81 if (Serial.read() != -1) {
86 bool dataChanged = shifter.
update();
95 if (millis() - lastPrint >= PrintSpeed) {
101void printConditional(
bool state,
char pressed) {
103 Serial.print(pressed);
110void printButton(ShifterButton button,
char pressed) {
111 bool state = shifter.getButton(button);
112 printConditional(state, pressed);
122 Serial.print(
" - XY: (");
129 printButton(ShifterButton::DPAD_LEFT,
'<');
130 printButton(ShifterButton::DPAD_UP,
'^');
131 printButton(ShifterButton::DPAD_DOWN,
'v');
132 printButton(ShifterButton::DPAD_RIGHT,
'>');
136 printButton(ShifterButton::BUTTON_NORTH,
'N');
137 printButton(ShifterButton::BUTTON_SOUTH,
'S');
138 printButton(ShifterButton::BUTTON_EAST,
'E');
139 printButton(ShifterButton::BUTTON_WEST,
'W');
143 printButton(ShifterButton::BUTTON_1,
'1');
144 printButton(ShifterButton::BUTTON_2,
'2');
145 printButton(ShifterButton::BUTTON_3,
'3');
146 printButton(ShifterButton::BUTTON_4,
'4');
150 lastPrint = millis();
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 G27 shifter.
Button
Enumeration of button values.
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.