Skip to content

Commit b93d70c

Browse files
authored
add new keyboard ID
1 parent dd18fe6 commit b93d70c

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/hhd/device/gpd/win/base.py

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,14 +30,17 @@
3030

3131
logger = logging.getLogger(__name__)
3232

33-
GPD_WIN_VID = 0x2F24
34-
# 2025 Win mini has a new ID
35-
GPD_WIN_PIDS = [0x0135, 0x0137]
33+
# Old devices were 2f24:0135
34+
# New 2025 Win mini uses 045e:002d
35+
GPD_WIN_VIDS = [0x2F24, 0x045e]
36+
GPD_WIN_PIDS = [0x0135, 0x002d]
3637
GAMEPAD_VID = 0x045E
3738
GAMEPAD_PID = 0x028E
3839

40+
# Win Max 2
3941
TOUCHPAD_VID = 0x093A
4042
TOUCHPAD_PID = 0x0255
43+
# Win Minis
4144
TOUCHPAD_VID_2 = 0x0911
4245
TOUCHPAD_PID_2 = 0x5288
4346

0 commit comments

Comments
 (0)