我需要能够与USB扫描仪(特别是Epson Perfection V550)连接。我尝试了ImageScanner,但它似乎找不到我的设备(我也尝试过安装twain,但它有问题说
Could not find any downloads that satisfy the requirement twain.)
所以我转向PyUSB,可以看到设备在那里。我现在遇到的问题是我不知道发送设备需要扫描并发回给我的照片。
以下是我运行的代码:
import usb.core
import usb.util
import sys
venderID = 0x04B8
productID = 0x013B
dev = usb.core.find(idVendor=venderID, idProduct=productID)
for cfg in dev:
print cfg
,输出到:
CONFIGURATION 1: 2 mA ====================================
bLength : 0x9 (9 bytes)
bDescriptorType : 0x2 Configuration
wTotalLength : 0x20 (32 bytes)
bNumInterfaces : 0x1
bConfigurationValue : 0x1
iConfiguration : 0x0
bmAttributes : 0xc0 Self Powered
bMaxPower : 0x1 (2 mA)
INTERFACE 0: Vendor Specific ===========================
bLength : 0x9 (9 bytes)
bDescriptorType : 0x4 Interface
bInterfaceNumber : 0x0
bAlternateSetting : 0x0
bNumEndpoints : 0x2
bInterfaceClass : 0xff Vendor Specific
bInterfaceSubClass : 0xff
bInterfaceProtocol : 0xff
iInterface : 0x0
ENDPOINT 0x81: Bulk IN ===============================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x81 IN
bmAttributes : 0x2 Bulk
wMaxPacketSize : 0x200 (512 bytes)
bInterval : 0xff
ENDPOINT 0x2: Bulk OUT ===============================
bLength : 0x7 (7 bytes)
bDescriptorType : 0x5 Endpoint
bEndpointAddress : 0x2 OUT
bmAttributes : 0x2 Bulk
wMaxPacketSize : 0x200 (512 bytes)
bInterval : 0xff
答案 0 :(得分:0)
如果您可以让扫描仪在Windows中运行,您可以在linux主机上设置Windows虚拟机。我推荐gnome-boxes / KVM。您需要具有CPU虚拟化扩展的主机(大多数现代CPU都有此功能)。
然后在主机上安装Wireshark。 Usnig wireshark,您可以监控Windows扫描仪驱动程序和设备之间的USB通信。基于此,您可以希望对USB协议进行反向工程。一旦理解了协议,使用PyUSB实现它就相对容易了。