From 9111e4f9a375a1449c9e79ad5b5ab3f09098c190 Mon Sep 17 00:00:00 2001 From: olimir <82812544+olimir@users.noreply.github.com> Date: Sun, 10 Sep 2023 15:43:35 +0200 Subject: [PATCH] Add support for PCsensor 3553:b001 --- 19-footswitch.rules | 1 + README.md | 1 + footswitch.c | 1 + 3 files changed, 3 insertions(+) diff --git a/19-footswitch.rules b/19-footswitch.rules index 352f726..147ad02 100644 --- a/19-footswitch.rules +++ b/19-footswitch.rules @@ -3,6 +3,7 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="0c45", ATTRS{idProduct}=="7403", TAG+="uacc SUBSYSTEMS=="usb", ATTRS{idVendor}=="0c45", ATTRS{idProduct}=="7404", TAG+="uaccess" SUBSYSTEMS=="usb", ATTRS{idVendor}=="413d", ATTRS{idProduct}=="2107", TAG+="uaccess" SUBSYSTEMS=="usb", ATTRS{idVendor}=="1a86", ATTRS{idProduct}=="e026", TAG+="uaccess" +SUBSYSTEMS=="usb", ATTRS{idVendor}=="3553", ATTRS{idProduct}=="b001", TAG+="uaccess" # Scythe SUBSYSTEMS=="usb", ATTRS{idVendor}=="0426", ATTRS{idProduct}=="3011", TAG+="uaccess" # Scythe2 diff --git a/README.md b/README.md index 9e86649..536ad27 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ The following list of devices are supported: | 0c45 | 7404 | `footswitch` | | 413d | 2107 | `footswitch` | | 1a86 | e026 | `footswitch` | +| 3553 | b001 | `footswitch` | | 0426 | 3011 | `scythe` | | 055a | 0998 | `scythe2` | diff --git a/footswitch.c b/footswitch.c index 8111409..5b1ba13 100644 --- a/footswitch.c +++ b/footswitch.c @@ -98,6 +98,7 @@ void init() { {0x0c45, 0x7404}, {0x413d, 0x2107}, {0x1a86, 0xe026}, + {0x3553, 0xb001}, }; int i = 0; for (i = 0 ; i < sizeof(vid_pid) / sizeof(vid_pid[0]) ; i++) {