Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add DualSense Edge support #23

Merged
merged 1 commit into from
Nov 18, 2023
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
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Place `vitacontrol.skprx` in the `ur0:tai/` directory on your Vita. Open `config
* Sony DualShock 3 Controller
* Sony DualShock 4 Controller
* Sony DualSense Controller
* Sony DualSense Edge Controller
* Microsoft Xbox One Controller
* Nintendo Switch Pro Controller

Expand Down
1 change: 1 addition & 0 deletions src/controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Controller *Controller::makeController(uint32_t mac0, uint32_t mac1, int port)
DECL_CONTROLLER(0x054C, 0x05C4, DualShock4Controller);
DECL_CONTROLLER(0x054C, 0x09CC, DualShock4Controller);
DECL_CONTROLLER(0x054C, 0x0CE6, DualSenseController);
DECL_CONTROLLER(0x054C, 0x0DF2, DualSenseController);
DECL_CONTROLLER(0x045E, 0x02E0, XboxOneController2016);
DECL_CONTROLLER(0x045E, 0x02FD, XboxOneController);
DECL_CONTROLLER(0x045E, 0x0B00, XboxOneController);
Expand Down