Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ four repos share a version number.
native USB and HID decoding, including a generic HID descriptor parser,
DualShock 4 and DualSense motion, Switch Pro motion, and Xbox 360
wireless rumble. Imported models are recognized but flagged unverified.
- Amazon Luna Controller (wired USB) recognized on the verified fast lane:
its wired mode is a byte-identical Xbox 360/XInput report, confirmed on
hardware for every button, both triggers, both sticks, and rumble.
- Steam Controller over USB Direct (wired and dongle): sticks, triggers,
buttons, motion, and the right trackpad as a right stick. While claimed
it no longer doubles as a mouse and keyboard for the phone, and it is
Expand Down
1 change: 1 addition & 0 deletions app/src/main/cpp/usb_parsers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ static const KnownDevice kKnown[] = {
{0x12AB, 0x0301, "PDP AFTERGLOW AX.1", Parser::XINPUT_360, InitKind::NONE},
{0x1532, 0x0037, "Razer Sabertooth", Parser::XINPUT_360, InitKind::NONE},
{0x1532, 0x0A00, "Razer Atrox Arcade Stick", Parser::XINPUT_360, InitKind::NONE},
{0x1949, 0x041A, "Amazon Luna Controller", Parser::XINPUT_360, InitKind::NONE},
{0x24C6, 0x5000, "Razer Atrox Arcade Stick", Parser::XINPUT_360, InitKind::NONE},
{0x24C6, 0x5300, "PowerA MINI PROEX", Parser::XINPUT_360, InitKind::NONE},
{0x24C6, 0x5303, "Xbox Airflo Wired Controller", Parser::XINPUT_360, InitKind::NONE},
Expand Down
Loading