Update pygameControls/globals.py

This commit is contained in:
2025-05-05 13:57:38 +02:00
parent 97908392f6
commit b236be16b7

View File

@@ -35,6 +35,34 @@ VID_PID = {
"054c:0df2": "DualSense Wireless Controller",
}
SONY_GAMEPADS = {
GAMEPADS = {
"Sony DualSense (PS5)": {
[
"vidpid": "054c:0ce6",
"connection": ConnectionType.USB,
"input": InputType.DirectInput,
"name": ["DualSense Wireless Controller"]
],
[
"vidpid": "054c:0df2",
"connection": ConnectionType.BLUETOOTH,
"input": InputType.DirectInput,
"name" ["DualSense Wireless Controller"]
]
},
"Sony DualSense Edge (PS5)": {
[
"vidhid": "054c:0dfc",
"connection": ConnectionType.USB,
"input": InputType.DirectInput,
"name" ["DualSense Edge Wireless Controller"]
],
[
"vidhid": "054c:0dfc",
"connection": ConnectionType.BLUETOOTH,
"input": InputType.DirectInput,
"name": ["DualSense Edge Wireless Controller"]
]
},
""
}