1### kodakaio.conf
2###
3### here are some examples for how to configure the kodakaio backend
4
5### Timeout settings: SNMP autodetection, Scan data read requests and other
6###                   read requests. All values are given in milliseconds,
7###                   i.e. 1000 is 1 second.
8
9# snmp-timeout controls auto-detection timeout in ms (1500=1.5s).
10snmp-timeout 2000
11
12# scan-data-timeout controls the timeout for scan data
13# (scans may take several seconds to initialize, so we need to wait longer)
14scan-data-timeout 10000
15
16# request-timeout controls all other data requests
17request-timeout 5000
18
19
20### Network: Format is "net IP_ADDRESS [USB_ID]" or "net autodiscovery"
21###          if USB_ID is left out, SNMP is used to detect the device type
22###          Currently autodiscovery seems to not work
23###          So always use "net IP_ADDRESS [USB_ID]" as shown below
24###          You can find the printer's IP address on its control panel
25###          There is a list of USB_IDs at the end of this file
26
27net autodiscovery
28
29### The following is a kodak HERO 9.1 with explicit IP-Address
30#net 10.0.0.5 0x4067
31
32# kodak ESP5250 is usb 0x040a 0x4041
33#net 192.168.1.2 0x4041
34# kodak HERO 9.1 is usb 0x040a 0x4067
35#net 192.168.1.17 0x4067
36
37### USB: format is "usb" for automatic (libusb) discovery, based on USB IDs,
38###      or "usb <vendor ID> <device ID> to force the use of a particular
39###      device (the backend has some additional checks and will not use
40###      non-kodak devices, though)
41
42usb
43
44### For libusb support for unknown scanners use the following command
45### usb <product ID> <device ID>
46### e.g.:
47
48# kodak ESP5250 is usb 0x040a 0x4041
49#usb 0x040a 0x4041
50# kodak HERO 9.1 is usb 0x040a 0x4067
51#usb 0x040a 0x4067
52
53### List of USB device IDs
54#  0x4059, /* kodak ESP 2150 */
55#  0x4066, /* kodak ESP 2170 */
56#  0x4043, /* kodak ESP 3200 */
57#  0x4031, /* kodak ESP 3300 */
58#  0x4053, /* kodak ESP 4100 */
59#  0x4028, /* kodak ESP 5000 */
60#  0x4025, /* kodak ESP 5100 */
61#  0x4041, /* kodak ESP 5200 */
62#  0x4026, /* kodak ESP 5300 */
63#  0x4027, /* kodak ESP 5500 */
64#  0x4054, /* kodak ESP 6100 */
65#  0x4056, /* kodak ESP 7200 */
66#  0x4065, /* kodak ESP 9200 */
67#  0x4032, /* kodak ESP 5 */
68#  0x403E, /* kodak ESP 7 */
69#  0x403F, /* kodak ESP 9 */
70#  0x4057, /* kodak ESP C110 */
71#  0x4058, /* kodak ESP C115 */
72#  0x405D, /* kodak ESP C310 */
73#  0x405E, /* kodak ESP C315 */
74#  0x4060, /* ADVENT WiFi AIO AW10 */
75#  0x406D, /* kodak Hero 3.1 */
76#  0x4064, /* kodak Hero 5.1 */
77#  0x4062, /* kodak Office Hero 6.1 */
78#  0x4063, /* kodak Hero 7.1 */
79#  0x4067, /* kodak Hero 9.1 */
80