Skip to content

Commit 13d1acd

Browse files
Merge pull request #50 from FrameworkComputer/copilot
python: Add copilot USB PID
2 parents 1f110c6 + c2e7004 commit 13d1acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/qmk_hid/protocol.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ def find_devs(show, verbose):
124124
print("Usage Page not matching")
125125
continue
126126
# Lots of false positives, so at least skip Framework false positives
127-
if vid == FWK_VID and pid not in [0x12, 0x13, 0x14, 0x18, 0x19]:
127+
if vid == FWK_VID and pid not in [0x12, 0x13, 0x14, 0x18, 0x19, 0x30]:
128128
if verbose:
129129
print("False positive, device is not allowed")
130130
continue

0 commit comments

Comments
 (0)