void setup() { XInput.begin(); } void loop() { XInput.press(BUTTON_A); delay(1000); XInput.release(BUTTON_A); delay(1000); } The example will press and then release the controller’s “A” button every two seconds. It’s a good way to test that the XInput emulation is workin...