We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1dc4b02 commit aa7d127Copy full SHA for aa7d127
src/hhd/device/legion_go/tablet/base.py
@@ -38,7 +38,10 @@
38
0x6184: "dual_dinput",
39
0x6185: "fps",
40
# 2025 Firmware
41
- 0x61eb: "xinput",
+ 0x61EB: "xinput",
42
+ 0x61EC: "dinput",
43
+ 0x61ED: "dual_dinput",
44
+ 0x61EE: "fps",
45
}
46
47
@@ -133,6 +136,7 @@ def plugin_run(
133
136
# Unhide all devices before exiting
134
137
unhide_all()
135
138
139
+
140
def controller_loop_rest(
141
mode: str,
142
pid: int,
@@ -255,7 +259,7 @@ def controller_loop_xinput(
255
259
# Inputs
256
260
d_xinput = GenericGamepadEvdev(
257
261
vid=[0x17EF],
258
- pid=[0x6182, 0x61eb],
262
+ pid=[0x6182, 0x61EB],
263
# name=["Generic X-Box pad"],
264
capabilities={EC("EV_KEY"): [EC("BTN_A")]},
265
required=True,
0 commit comments