Skip to content

Commit 9111e4f

Browse files
olimirrgerganov
authored andcommitted
Add support for PCsensor 3553:b001
1 parent 15251f3 commit 9111e4f

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

19-footswitch.rules

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="0c45", ATTRS{idProduct}=="7403", TAG+="uacc
33
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0c45", ATTRS{idProduct}=="7404", TAG+="uaccess"
44
SUBSYSTEMS=="usb", ATTRS{idVendor}=="413d", ATTRS{idProduct}=="2107", TAG+="uaccess"
55
SUBSYSTEMS=="usb", ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="e026", TAG+="uaccess"
6+
SUBSYSTEMS=="usb", ATTRS{idVendor}=="3553", ATTRS{idProduct}=="b001", TAG+="uaccess"
67
# Scythe
78
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0426", ATTRS{idProduct}=="3011", TAG+="uaccess"
89
# Scythe2

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ The following list of devices are supported:
1313
| 0c45 | 7404 | `footswitch` |
1414
| 413d | 2107 | `footswitch` |
1515
| 1a86 | e026 | `footswitch` |
16+
| 3553 | b001 | `footswitch` |
1617
| 0426 | 3011 | `scythe` |
1718
| 055a | 0998 | `scythe2` |
1819

footswitch.c

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ void init() {
9898
{0x0c45, 0x7404},
9999
{0x413d, 0x2107},
100100
{0x1a86, 0xe026},
101+
{0x3553, 0xb001},
101102
};
102103
int i = 0;
103104
for (i = 0 ; i < sizeof(vid_pid) / sizeof(vid_pid[0]) ; i++) {

0 commit comments

Comments
 (0)