Add support for ZKNS-002

This commit is contained in:
Marc Riera 2022-11-01 19:16:23 +01:00
parent cbfe1d366d
commit 07feffd855

View file

@ -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)