summaryrefslogtreecommitdiff
path: root/doc/descriptions/pixma.desc
blob: 3b7ac6c920c0521f2e62ef5ef4d86db26df54cf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
;
; SANE Backend specification file
;
; It's basically emacs-lisp --- so ";" indicates comment to end of line.
; All syntactic elements are keyword tokens, followed by a string or
;  keyword argument, as specified.
;
; ":backend" *must* be specified.
; All other information is optional (but what good is the file without it?).
;
; See doc/descriptions.txt for details.

:backend "pixma"                  ; name of backend
:version "0.28.5"                 ; version of backend (or "unmaintained")
:manpage "sane-pixma"             ; name of manpage (if it exists)
;:comment "Devices marked as experimantal are disabled by default. See the manual page for how to enable them."

:devicetype :scanner              ; start of a list of devices....
                                  ; other types:  :stillcam, :vidcam,
                                  ;               :meta, :api

:mfg "Canon"                   ; name a manufacturer
:url "http://www.canon.com/"

:model "PIXMA E400"
:interface "USB"
:usbid "0x04a9" "0x177a"
:status :untested
:comment "Testers needed!"

:model "PIXMA E410 Series"
:interface "USB"
:usbid "0x04a9" "0x181e"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA E460 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1788"
:status :untested
:comment "Testers needed!"

:model "PIXMA E470 Series"
:interface "USB"
:usbid "0x04a9" "0x180c"
:status :untested
:comment "Testers needed!"

:model "PIXMA E480 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1789"
:status :untested
:comment "Testers needed!"

:model "PIXMA E500"
:interface "USB"
:usbid "0x04a9" "0x1758"
:status :untested
:comment "Testers needed!"

:model "PIXMA E510"
:interface "USB"
:usbid "0x04a9" "0x1761"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA E560"
:interface "USB"
:usbid "0x04a9" "0x177b"
:status :untested
:comment "Testers needed!"

:model "PIXMA E600"
:interface "USB"
:usbid "0x04a9" "0x175a"
:status :untested
:comment "Testers needed!"

:model "PIXMA E610"
:interface "USB"
:usbid "0x04a9" "0x1767"
:status :untested
:comment "Testers needed!"

:model "PIXMA E3100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1828"
:status :untested
:comment "Testers needed!"

:model "PIXMA E3300 Series"
:interface "USB"
:usbid "0x04a9" "0x18a3"
:status :untested
:comment "Testers needed!"

:model "PIXMA E4200 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1855"
:status :untested
:comment "Testers needed!"

:model "PIXMA G2000"
:interface "USB"
:usbid "0x04a9" "0x1795"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA G2010 Series"
:interface "USB"
:usbid "0x04a9" "0x183a"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA G2100"
:interface "USB"
:usbid "0x04a9" "0x1795"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA G3000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1794"
:status :untested
:comment "Testers needed!"

:model "PIXMA G3010 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x183b"
:status :untested
:comment "Testers needed!"

:model "PIXMA G4000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x181d"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA G4010 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x183d"
:status :untested
:comment "Testers needed!"

:model "PIXMA G6000"
:interface "USB WiFi"
:usbid "0x04a9" "0x1865"
:status :untested
:comment "Testers needed!"

:model "PIXMA G6080"
:interface "USB WiFi"
:usbid "0x04a9" "0x1866"
:status :untested
:comment "Testers needed!"

:model "PIXMA G7000 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1863"
:status :untested
:comment "Testers needed!"

:model "PIXMA GM4000 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1869"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG2100 Series"
:interface "USB"
:usbid "0x04a9" "0x1751"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG2200 Series"
:interface "USB"
:usbid "0x04a9" "0x1760"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG2400 Series"
:interface "USB"
:usbid "0x04a9" "0x176c"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA MG2500 Series"
:interface "USB"
:usbid "0x04a9" "0x176d"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA MG2900 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1780"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA MG3000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x180b"
:status :good
:comment "All resolutions supported (up to 600DPI). WiFi not working."

:model "PIXMA MG3100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1752"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG3200 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1762"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG3500 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x176e"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG3600 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x178a"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG4100 Series"
:interface "USB"
:usbid "0x04a9" "0x1753"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG4200 Series"
:interface "USB"
:usbid "0x04a9" "0x1763"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG5100 Series"
:interface "USB"
:usbid "0x04a9" "0x1748"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG5200 Series"
:interface "USB"
:usbid "0x04a9" "0x1749"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG5300 Series"
:interface "USB"
:usbid "0x04a9" "0x1754"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MG5400 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1764"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MG5500 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1771"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG5600 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x177f"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG5700 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x178e"
:status :complete
:comment "All resolutions supported (up to 1200 DPI)."

:model "PIXMA MG6100 Series"
:interface "USB"
:usbid "0x04a9" "0x174a"
:status :complete
:comment "All resolutions supported (up to 2400 DPI)"

:model "PIXMA MG6200 Series"
:interface "USB"
:usbid "0x04a9" "0x1755"
:status :complete
:comment "All resolutions supported (up to 4800 DPI)"

:model "PIXMA MG6300 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1765"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MG6400 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1770"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MG6500 Series"
:interface "USB"
:usbid "0x04a9" "0x176f"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG6600 Series"
:interface "USB"
:usbid "0x04a9" "0x177e"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG6800 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x178d"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG6900 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x178c"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG7100 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1772"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MG7500 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x177c"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MG7700 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x178b"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MG8100 Series"
:interface "USB"
:usbid "0x04a9" "0x174b"
:status :untested
:comment "Testers needed!"

:model "PIXMA MG8200 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1756"
:status :complete
:comment "All resolutions supported (up to 4800DPI)."

:model "PIXMA MP140"
:interface "USB"
:usbid "0x04a9" "0x172b"
:status :complete
:comment "All resolutions supported (up to 600 DPI)"

:model "PIXMA MP150"
:interface "USB"
:usbid "0x04a9" "0x1709"
:status :good

:model "PIXMA MP160"
:interface "USB"
:usbid "0x04a9" "0x1714"
:status :basic

:model "PIXMA MP170"
:interface "USB"
:usbid "0x04a9" "0x170a"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP180"
:interface "USB"
:usbid "0x04a9" "0x1715"
:status :basic

:model "PIXMA MP190"
:interface "USB"
:usbid "0x04a9" "0x1734"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "PIXMA MP210"
:interface "USB"
:usbid "0x04a9" "0x1721"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "PIXMA MP220"
:interface "USB"
:usbid "0x04a9" "0x1722"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP230"
:interface "USB"
:usbid "0x04a9" "0x175f"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA MP240"
:interface "USB"
:usbid "0x04a9" "0x1732"
:status :complete
:comment "All resolutions supported (up to 1200DPI)"

:model "PIXMA MP250"
:interface "USB"
:usbid "0x04a9" "0x173a"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "PIXMA MP260"
:interface "USB"
:usbid "0x04a9" "0x1733"
:status :complete
:comment "All resolutions supported (up to 1200DPI)"

:model "PIXMA MP270"
:interface "USB"
:usbid "0x04a9" "0x173b"
:status :complete
:comment "All resolutions supported (up to 1200DPI)"

:model "PIXMA MP280"
:interface "USB"
:usbid "0x04a9" "0x1746"
:status :good
:comment "All resolutions supported (up to 600DPI)."

:model "PIXMA MP360"
:interface "USB"
:usbid "0x04a9" "0x263c"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP370"
:interface "USB"
:usbid "0x04a9" "0x263d"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP375R"
:interface "USB"
:usbid "0x04a9" "0x263f"
:status :untested
:comment "Same protocol as Pixma MP360/370/390? Testers needed!"

:model "PIXMA MP390"
:interface "USB"
:usbid "0x04a9" "0x263e"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP450"
:interface "USB"
:usbid "0x04a9" "0x170b"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP460"
:interface "USB"
:usbid "0x04a9" "0x1716"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP470"
:interface "USB"
:usbid "0x04a9" "0x1723"
:status :complete
:comment "All resolutions supported (up to 2400DPI)."

:model "PIXMA MP480"
:interface "USB"
:usbid "0x04a9" "0x1731"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP490"
:interface "USB"
:usbid "0x04a9" "0x173c"
:status :complete
:comment "All resolutions supported (up to 1200DPI)"

:model "PIXMA MP493"
:interface "USB"
:usbid "0x04a9" "0x1757"
:status :untested
:comment "Testers needed!"

:model "PIXMA MP495"
:interface "USB"
:usbid "0x04a9" "0x1747"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "PIXMA MP500"
:interface "USB"
:usbid "0x04a9" "0x170c"
:status :good

:model "PIXMA MP510"
:interface "USB"
:usbid "0x04a9" "0x1717"
:status :complete
:comment "All resolutions supported (up to 1200DPI)."

:model "PIXMA MP520"
:interface "USB"
:usbid "0x04a9" "0x1724"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP530"
:interface "USB"
:usbid "0x04a9" "0x1712"
:status :good

:model "PIXMA MP540"
:interface "USB"
:usbid "0x04a9" "0x1730"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP550"
:interface "USB"
:usbid "0x04a9" "0x173d"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP560"
:interface "USB"
:usbid "0x04a9" "0x173e"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP600"
:interface "USB"
:usbid "0x04a9" "0x1718"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP600R"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1719"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP610"
:interface "USB"
:usbid "0x04a9" "0x1725"
:status :complete
:comment "All resolutions supported (up to 4800DPI)"

:model "PIXMA MP620"
:interface "USB Ethernet"
:usbid "0x04a9" "0x172f"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "PIXMA MP630"
:interface "USB"
:usbid "0x04a9" "0x172e"
:status :complete
:comment "All resolutions supported (up to 4800DPI)"

:model "PIXMA MP640"
:interface "USB Ethernet"
:usbid "0x04a9" "0x173f"
:status :complete
:comment "All resolutions supported (up to 4800DPI)"

:model "PIXMA MP700"
:interface "USB"
:usbid "0x04a9" "0x2630"
:status :complete
:comment "All resolutions supported (flatbed color up to 1200DPI, grayscale up to 600DPI)."

:model "PIXMA MP710"
:interface "USB"
:usbid "0x04a9" "0x264d"
:status :complete
:comment "All resolutions supported (up to 1200DPI)"

:model "PIXMA MP730"
:interface "USB"
:usbid "0x04a9" "0x262f"
:status :good
:comment "Flatbed color up to 1200DPI, grayscale up to 600DPI. ADF scan to be confirmed."

:model "PIXMA MP740"
:interface "USB"
:usbid "0x04a9" "0x264c"
:status :untested
:comment "Same protocol as Pixma MP710? Testers needed!"

:model "PIXMA MP750"
:interface "USB"
:usbid "0x04a9" "0x1706"
:status :minimal
:comment "No grayscale. Canceling scan in ADF mode doesn't eject the paper!"

:model "PIXMA MP760"
:interface "USB"
:usbid "0x04a9" "0x1708"
:status :minimal
:comment "No grayscale. The scanner sometimes hangs!"

:model "PIXMA MP770"
:interface "USB"
:usbid "0x04a9" "0x1708"
:status :minimal
:comment "No grayscale. The scanner sometimes hangs!"

:model "PIXMA MP780"
:interface "USB"
:usbid "0x04a9" "0x1707"
:status :minimal
:comment "No grayscale. The scanner sometimes hangs!"

:model "PIXMA MP790"
:interface "USB"
:usbid "0x04a9" "0x1707"
:status :minimal
:comment "No grayscale. The scanner sometimes hangs!"

:model "PIXMA MP800"
:interface "USB"
:usbid "0x04a9" "0x170d"
:status :complete
:comment "All resolutions supported up to 2400DPI. Full TPU support up to 2400DPI."

:model "PIXMA MP800R"
:interface "USB"
:usbid "0x04a9" "0x170e"
:status :complete
:comment "All resolutions supported up to 2400DPI. Full TPU support up to 2400DPI."

:model "PIXMA MP810"
:interface "USB"
:usbid "0x04a9" "0x171a"
:status :complete
:comment "All resolutions supported up to 4800DPI. Full TPU support (negative and slides) up to 4800DPI."

:model "PIXMA MP830"
:interface "USB"
:usbid "0x04a9" "0x1713"
:status :complete
:comment "All resolutions supported up to 2400DPI. Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MP960"
:interface "USB"
:usbid "0x04a9" "0x171b"
:status :complete
:comment "All resolutions supported up to 4800DPI. Full TPU support (negative and slides) up to 4800DPI."

:model "PIXMA MP970"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1726"
:status :complete
:comment "All resolutions supported (up to 4800DPI). Full TPU support (negative and slides) at 24 or 48 bits."

:model "PIXMA MP980"
:interface "USB Ethernet"
:usbid "0x04a9" "0x172d"
:status :complete
:comment "Working fine at all resolutions."

:model "PIXMA MP990"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1740"
:status :complete
:comment "Working fine at all resolutions."

:model "PIXMA MX300"
:interface "USB"
:usbid "0x04a9" "0x1727"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)"

:model "PIXMA MX310"
:interface "USB"
:usbid "0x04a9" "0x1728"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)"

:model "PIXMA MX320"
:interface "USB"
:usbid "0x04a9" "0x1736"
:status :untested
:comment "Same protocol as Pixma Generation 3? Testers needed!"

:model "PIXMA MX330"
:interface "USB"
:usbid "0x04a9" "0x1737"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)"

:model "PIXMA MX340"
:interface "USB"
:usbid "0x04a9" "0x1741"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)"

:model "PIXMA MX350"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1742"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)"

:model "PIXMA MX360"
:interface "USB"
:usbid "0x04a9" "0x174d"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX370 Series"
:interface "USB"
:usbid "0x04a9" "0x1759"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX390 Series"
:interface "USB"
:usbid "0x04a9" "0x1766"
:status :untested
:comment "Testers needed!"

:model "PIXMA MX410"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x174e"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX420"
:interface "USB Ethernet"
:usbid "0x04a9" "0x174f"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX430 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x175b"
:status :untested
:comment "Testers needed!"

:model "PIXMA MX450 Series"
:interface "USB"
:usbid "0x04a9" "0x1768"
:status :untested
:comment "Testers needed!"

:model "PIXMA MX470 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1774"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX490 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1787"
:status :untested
:comment "Testers needed!"

:model "PIXMA MX510 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x175c"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX520 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1769"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX530 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1775"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "PIXMA MX700"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1729"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 2400DPI)"

:model "PIXMA MX710 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x175d"
:status :untested
:comment "Testers needed!"

:model "PIXMA MX720 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x176a"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX850"
:interface "USB Ethernet"
:usbid "0x04a9" "0x172c"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX860"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1735"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX870"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1743"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX880 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1750"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX882"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1750"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX885"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1750"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX890 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x175e"
:status :complete
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX920 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x176b"
:status :good
:comment "All resolutions supported (up to 2400DPI). Flatbed, ADF simplex and Duplex supported."

:model "PIXMA MX7600"
:interface "USB Ethernet"
:usbid "0x04a9" "0x171c"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 4800DPI)"

:model "PIXMA TR4500 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1854"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)"

:model "PIXMA TR7500 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1824"
:status :untested
:comment "Testers needed!"

:model "PIXMA TR7530 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1845"
:status :untested
:comment "Testers needed!"

:model "PIXMA TR8500 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1823"
:status :untested
:comment "Testers needed!"

:model "PIXMA TR8530 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1844"
:status :untested
:comment "Testers needed!"

:model "PIXMA TR8580 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1841"
:status :untested
:comment "Testers needed!"

:model "PIXMA TR9530 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x185e"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS3100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1827"
:status :good
:comment "All resolutions supported (up to 600DPI). WiFi not working."

:model "PIXMA TS3300 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x18a2"
:status :good
:comment "All resolutions supported (up to 1200DPI). WiFi not working."

:model "PIXMA TS5000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1802"
:status :good
:comment "All resolutions supported (up to 1200DPI). WiFi not working."

:model "PIXMA TS5100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1825"
:status :good
:comment "All resolutions supported (up to 1200DPI). WiFi not working."

:model "PIXMA TS5300 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x188b"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS5380 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x188c"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1801"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1822"
:status :good
:comment "All resolutions supported (up to 2400DPI). WiFi not working."

:model "PIXMA TS6130 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1843"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6180 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1840"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6200 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1856"
:status :good
:comment "All resolutions supported (up to 1200DPI). WiFi not working."

:model "PIXMA TS6230 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1858"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6280 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1857"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6300 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x188b"
:status :good
:comment "Testers needed!"

:model "PIXMA TS6330 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1894"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS6380 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x188e"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS7330 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x188f"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1800"
:status :good
:comment "All resolutions supported (up to 2400DPI). WiFi not working."

:model "PIXMA TS8100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1821"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8130 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1842"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8180 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x183f"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8200 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1859"
:status :good
:comment "All resolutions supported (up to 1200DPI). WiFi not working."

:model "PIXMA TS8230 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x185b"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8280 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x185a"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8300 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1890"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8330 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1892"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS8380 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1891"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS9000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x179f"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS9100 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1820"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS9180 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x183e"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS9500 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x185c"
:status :untested
:comment "Testers needed!"

:model "PIXMA TS9580 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x185d"
:status :untested
:comment "Testers needed!"

:model "PIXUS MP5"
:interface "USB"
:usbid "0x04a9" "0x2635"
:status :untested
:comment "Testers needed! Identical with imageCLASS MPC190."

:model "PIXUS MP10"
:interface "USB"
:usbid "0x04a9" "0x261f"
:status :complete
:comment "All resolutions supported (up to 600DPI). Identical with imageCLASS MPC200."

:model "PIXUS XK50 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1846"
:status :untested
:comment "Testers needed!"

:model "CanoScan XK 60"
:interface "USB"
:usbid "0x04a9" "0x1893"
:status :untested
:comment "Testers needed!"

:model "PIXUS XK70 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1847"
:status :untested
:comment "Testers needed!"

:model "PIXUS XK80 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1873"
:status :untested
:comment "Testers needed!"

:model "imageCLASS D420"
:interface "USB"
:usbid "0x04a9" "0x26ef"
:status :complete
:comment "All resolutions supported (up to 600DPI). Flatbed, ADF simplex and Duplex supported."

:model "imageCLASS D480"
:interface "USB"
:usbid "0x04a9" "0x26ed"
:status :complete
:comment "All resolutions supported (up to 600DPI). Flatbed, ADF simplex and Duplex supported."

:model "imageCLASS D530"
:interface "USB"
:usbid "0x04a9" "0x2775"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS D550"
:interface "USB"
:usbid "0x04a9" "0x2738"
:status :untested
:comment "Testers needed!"

:model "imageCLASS D570"
:interface "USB"
:usbid "0x04a9" "0x27e8"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "i-SENSYS MF110 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27ed"
:status :untested
:comment "Testers needed! WiFi only for w Types."

:model "i-SENSYS MF210 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27a9"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI). WiFi only for w Types."

:model "i-SENSYS MF220 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27a8"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF230 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x27d1"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI). WiFi only for w Types."

:model "i-SENSYS MF240 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27d2"
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI, ADF up to 300DPI). 216mm image width buggy, restricted to 215mm."

:model "i-SENSYS MF260 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27f4"
:status :untested
:comment "Testers needed! Duplex only for MF269."

:model "i-SENSYS MF410 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27c0"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF420 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27f1"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF440 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x2823"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI, ADF up to 300DPI)."

:model "i-SENSYS MF510 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27c2"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF520 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27f0"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF620 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27b4"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF630 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27e1"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "imageCLASS MF634C"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27e2"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF640 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27fe"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF645C"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27fd"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF720 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27b5"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF730 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27e4"
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI). Ethernet and WiFi not tested yet"

:model "imageCLASS MF733Cdw"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27e5"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF731/733"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27e5"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF740 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27fb"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF741/743"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x27fc"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF810/820"
:interface "USB Ethernet"
:usbid "0x04a9" "0x27a6"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF3010"
:interface "USB Ethernet"
:usbid "0x04a9" "0x2759"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF3110"
:interface "USB"
:usbid "0x04a9" "0x2660"
:status :complete
:comment "All resolutions supported (up to 600DPI)."

:model "imageCLASS MF3240"
:interface "USB"
:usbid "0x04a9" "0x2684"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4010"
:interface "USB"
:usbid "0x04a9" "0x26b4"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4018"
:interface "USB"
:usbid "0x04a9" "0x26b4"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4120"
:interface "USB"
:usbid "0x04a9" "0x26a3"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4122"
:interface "USB"
:usbid "0x04a9" "0x26a3"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4140"
:interface "USB"
:usbid "0x04a9" "0x26a3"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4150"
:interface "USB"
:usbid "0x04a9" "0x26a3"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4270"
:interface "USB"
:usbid "0x04a9" "0x26b5"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "I-SENSYS MF4320d"
:interface "USB"
:usbid "0x04a9" "0x26ee"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "I-SENSYS MF4330d"
:interface "USB"
:usbid "0x04a9" "0x26ee"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4350d"
:interface "USB"
:usbid "0x04a9" "0x26ee"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4370dn"
:interface "USB"
:usbid "0x04a9" "0x26ec"
:status :good
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI). Network not supported"

:model "imageCLASS MF4380dn"
:interface "USB"
:usbid "0x04a9" "0x26ec"
:status :good
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI). Network not supported"

:model "imageCLASS MF4410"
:interface "USB"
:usbid "0x04a9" "0x2737"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4430"
:interface "USB"
:usbid "0x04a9" "0x2737"
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI). ADF empty buggy."

:model "i-SENSYS MF4500 Series"
:interface "USB"
:usbid "0x04a9" "0x2736"
:status :good
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "imageCLASS MF4570dw"
:interface "USB"
:usbid "0x04a9" "0x275a"
:status :complete
:comment "All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4660"
:interface "USB"
:usbid "0x04a9" "0x26b0"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "imageCLASS MF4690"
:interface "USB"
:usbid "0x04a9" "0x26b0"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "i-SENSYS MF4700 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x2774"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF4800 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x2773"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI). Ethernet buggy."

:model "imageCLASS MF5630"
:interface "USB"
:usbid "0x04a9" "0x264e"
:status :untested
:comment "Testers needed!"

:model "laserBase MF5650"
:interface "USB"
:usbid "0x04a9" "0x264f"
:status :untested
:comment "Testers needed!"

:model "imageCLASS MF5730"
:interface "USB"
:usbid "0x04a9" "0x265d"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "imageCLASS MF5750"
:interface "USB"
:usbid "0x04a9" "0x265e"
:status :untested
:comment "Testers needed!"

:model "imageCLASS MF5770"
:interface "USB"
:usbid "0x04a9" "0x265f"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF5880dn"
:interface "USB"
:usbid "0x04a9" "0x26f9"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF5900 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x2743"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF6100 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x278e"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI). Note: document feeder does not have 600DPI capability."

:model "imageCLASS MF6500 Series"
:interface "USB"
:usbid "0x04a9" "0x2686"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "imageCLASS MF6550"
:interface "USB"
:usbid "0x04a9" "0x2686"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "i-SENSYS MF6680dn"
:interface "USB"
:usbid "0x04a9" "0x26fa"
:status :untested
:comment "Testers needed!"

:model "imageCLASS MF8030"
:interface "USB"
:usbid "0x04a9" "0x2707"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "imageCLASS MF8170c"
:interface "USB"
:usbid "0x04a9" "0x2659"
:status :untested
:comment "Testers needed!"

:model "i-SENSYS MF8200C Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x2779"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI). Note: document feeder does not have 600DPI capability."

:model "i-SENSYS MF8300 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x2708"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)."

:model "i-SENSYS MF8500C Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x277a"
:status :untested
:comment "Same protocol as MF8200C Series? Testers needed!"

:model "imageCLASS MPC190"
:interface "USB"
:usbid "0x04a9" "0x2635"
:status :untested
:comment "Testers needed! Identical with SmartBase MPC190 and PIXUS MP5."

:model "imageCLASS MPC200"
:interface "USB"
:usbid "0x04a9" "0x261f"
:status :complete
:comment "All resolutions supported (up to 600DPI). Identical with SmartBase MPC200 and PIXUS MP10."

:model "imageRUNNER 1020/1024/1025"
:interface "USB"
:usbid "0x04a9" "0x26e6"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "imageRUNNER 1133"
:interface "USB"
:usbid "0x04a9" "0x2742"
:status :complete
:comment "Flatbed and ADF scan.  All resolutions supported (up to 600DPI)"

:model "MAXIFY MB2000 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1778"
:status :good
:comment "Flatbed works, All resolutions supported (up to 1200DPI), ADF does not work"

:model "MAXIFY MB2100 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1793"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "MAXIFY MB2300 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1779"
:status :good
:comment "Flatbed and ADF scan.  All resolutions supported (up to 1200DPI), ADF does not work"

:model "MAXIFY MB2700 Series"
:interface "USB WiFi"
:usbid "0x04a9" "0x1792"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "MAXIFY MB5000 Series"
:interface "USB"
:usbid "0x04a9" "0x1776"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "MAXIFY MB5100 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x1790"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "MAXIFY MB5300 Series"
:interface "USB Ethernet"
:usbid "0x04a9" "0x1777"
:status :good
:comment "1200dpi scans do not work"

:model "MAXIFY MB5400 Series"
:interface "USB Ethernet WiFi"
:usbid "0x04a9" "0x178f"
:status :complete
:comment "Flatbed and ADF scan. All resolutions supported (up to 1200DPI)."

:model "CanoScan 8800F"
:interface "USB"
:usbid "0x04a9" "0x1901"
:status :complete
:comment "Flatbed scan. TPU for negatives and slides. All resolutions supported (up to 4800DPI)."

:model "CanoScan 9000F"
:interface "USB"
:usbid "0x04a9" "0x1908"
:status :complete
:comment "Full flatbed support up to 4800DPI (Note: flatbed does not have 9600DPI capability). Full TPU support (negatives, slides and infrared) up to 9600DPI."

:model "CanoScan 9000F Mark II"
:interface "USB"
:usbid "0x04a9" "0x190d"
:status :complete
:comment "Full flatbed support up to 4800DPI (Note: flatbed does not have 9600DPI capability). Full TPU support (negatives, slides and infrared) up to 9600DPI."

:model "CanoScan LiDE 300"
:interface "USB"
:usbid "0x04a9" "0x1913"
:status :complete
:comment "All resolutions supported (up to 2400DPI)"

:model "CanoScan LiDE 400"
:interface "USB"
:usbid "0x04a9" "0x1912"
:status :complete
:comment "All resolutions supported (up to 4800DPI)"