Skip to content

Commit

Permalink
Added PID for new DS4 controller.
Browse files Browse the repository at this point in the history
  • Loading branch information
andersfischernielsen committed Oct 5, 2016
1 parent 5b87490 commit 02c0c65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion DS4Windows/DS4Library/DS4Devices.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static void findControllers()
{
lock (Devices)
{
int[] pid = { 0xBA0, 0x5C4 };
int[] pid = { 0xBA0, 0x5C4, 0x09CC };
IEnumerable<HidDevice> hDevices = HidDevices.Enumerate(0x054C, pid);
// Sort Bluetooth first in case USB is also connected on the same controller.
hDevices = hDevices.OrderBy<HidDevice, ConnectionType>((HidDevice d) => { return DS4Device.HidConnectionType(d); });
Expand Down

0 comments on commit 02c0c65

Please sign in to comment.