feat: support Xbox Elite Series 2 over wired USB - #67
Merged
Conversation
The Elite Series 2 (045e:0b00) speaks the same 18-byte GIP input frame over USB as the already-supported Xbox One S (045e:02ea), but its PID was not in XBOX_GIP_PIDS, so it fell through to the generic driver and produced no input events at all. Adding the PID is sufficient — parseXboxGipReport needed no changes. Verified against a live pad: doctor reports 17/17 buttons and full range on all six axes. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Owner
|
Thank you! |
stephenleo
added a commit
that referenced
this pull request
Jul 31, 2026
Xbox Elite Series 2 wired USB support (#67).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds the Xbox Elite Series 2 (
045e:0b00) toXBOX_GIP_PIDS.The pad emits the same 18-byte GIP input frame over wired USB as the already-supported Xbox One S (
045e:02ea), but because its PID was unlisted it fell through to thegenericdriver and produced no input events at all —doctordetected the device, then every button and axis read zero.parseXboxGipReportneeded no changes. The one-line PID addition is the entire fix.Verified on physical hardware
Confirmed on a real Elite Series 2, wired over USB-C, macOS 26 (Darwin 25.5), Node 24:
openmicro doctor→Driver: xbox, 17/17 buttons pass[-1.00, 1.00], triggers[0.00, 1.00]touchpad) works — it arrives as the separate GIP type0x07message, so this exercises that path on Elite hardware for the first timetest/fixtures/controllers/045e-0b00-usb.json;CONTROLLERS.mdregenerated withnpm run gen:controllersnpm run verifygreen (290 tests)Before the fix, raw HID capture showed frames arriving correctly but unparsed — e.g. trigger presses decoding to
LT=305,RT=862at bytes 6–9, exactly matching the existing GIP layout.Known limitations
0x0b05) over BT and I could not test that transport, so I have deliberately not added it rather than claim unverified support.Output: unsupported, as expected for Xbox pads — no LED/rumble feedback.