我需要能够与USB扫描仪(特别是爱普生完美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
如果你能让你的扫描器在Windows中工作,你能做的就是在linux主机上设置一个Windows虚拟机。我推荐gnome-boxes/KVM。您需要一台带有CPU虚拟化扩展的主机(大多数现代CPU都有)。
然后在主机上安装Wireshark。使用wireshark,您可以监控Windows扫描程序驱动程序与设备之间的USB通信。基于此,您可以对USB协议进行逆向工程。一旦理解了协议,使用PyUSB实现它就相对容易了。