mirror of
https://github.com/marcriera/ddgo-converter.git
synced 2025-04-11 07:29:28 +02:00
Add support for ZKNS-002
This commit is contained in:
parent
cbfe1d366d
commit
07feffd855
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ from select import select
|
|||
|
||||
def create_gamepad(vid, pid, name):
|
||||
match vid, pid:
|
||||
case 0x0f0d, 0x00c1:
|
||||
case (0x0f0d, 0x00c1) | (0x33dd, 0x0002):
|
||||
return SwitchGamepad(vid, pid, name)
|
||||
return PhysicalGamepad(vid, pid, name)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue