Quote:
Originally Posted by biblioeteca
I'm working on creating an application able to see any ereader connected to a computer, do you know if there are a list of USB ID (VENDOR ID : DEVICE ID) for kobo ereaders?
|
You could download calibre's latest sourcecode and have a look at the various driver.py files in the device subdirectories within \src\calibre\devices
My sourcecode copy isn't up-to-date but its kobo\driver.py shows
Code:
VENDOR_ID = [0x2237]
BCD = [0x0110, 0x0323, 0x0326]
ORIGINAL_PRODUCT_ID = [0x4165]
WIFI_PRODUCT_ID = [0x4161, 0x4162]
PRODUCT_ID = ORIGINAL_PRODUCT_ID + WIFI_PRODUCT_ID
Is that the sort of info you're looking for?