From 6f67659e0761c3b9d3b0eb121944fd4865dfe866 Mon Sep 17 00:00:00 2001 From: Andrew Chow Date: Thu, 14 Mar 2019 22:58:15 -0400 Subject: [PATCH] Add Keepkey Webusb device ids --- hwilib/devices/trezorlib/transport/__init__.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hwilib/devices/trezorlib/transport/__init__.py b/hwilib/devices/trezorlib/transport/__init__.py index efee0e7..b2d19fe 100644 --- a/hwilib/devices/trezorlib/transport/__init__.py +++ b/hwilib/devices/trezorlib/transport/__init__.py @@ -27,8 +27,9 @@ DEV_TREZOR1 = (0x534C, 0x0001) DEV_TREZOR2 = (0x1209, 0x53C1) DEV_TREZOR2_BL = (0x1209, 0x53C0) DEV_KEEPKEY = (0x2B24, 0x0001) +DEV_KEEPKEY_WEBUSB = (0x2B24, 0x0002) -TREZORS = {DEV_TREZOR1, DEV_TREZOR2, DEV_TREZOR2_BL, DEV_KEEPKEY} +TREZORS = {DEV_TREZOR1, DEV_TREZOR2, DEV_TREZOR2_BL, DEV_KEEPKEY, DEV_KEEPKEY_WEBUSB} UDEV_RULES_STR = """ Do you have udev rules installed?