1; 2; SANE Backend specification file 3; 4; It's basically emacs-lisp --- so ";" indicates comment to end of line. 5; All syntactic elements are keyword tokens, followed by a string or 6; keyword argument, as specified. 7; 8; ":backend" *must* be specified. 9; All other information is optional (but what good is the file without it?). 10; 11 12:backend "pieusb" ; name of backend 13:version "1.0 (unmaintained)" ; version of backend 14:manpage "sane-pieusb" ; name of manpage (if it exists) 15:url "https://github.com/kkaempf/sane-backends" ; backend's web page 16 17:devicetype :scanner ; start of a list of devices.... 18 ; other types: :stillcam, :vidcam, 19 ; :meta, :api 20 21:mfg "PIE" 22:url "http://www.scanace.com" 23 24:model "PowerSlide 3600" 25:interface "USB" 26:usbid "0x05e3" "0x0142" 27:status :untested 28:comment "Identical to Reflecta DigitDia 3600" 29 30:model "PowerSlide 3650" 31:interface "USB" 32:usbid "0x05e3" "0x0142" 33:status :basic 34:comment "Identical to Reflecta DigitDia 4000" 35 36:model "PowerSlide 4000" 37:interface "USB" 38:usbid "0x05e3" "0x0142" 39:status :basic 40:comment "Identical to Reflecta DigitDia 5000" 41 42:model "PowerSlide 5000" 43:interface "USB" 44:usbid "0x05e3" "0x0142" 45:status :basic 46:comment "Identical to Reflecta DigitDia 6000" 47 48:mfg "Reflecta" 49:url "https://reflecta.de" 50 51:model "Reflecta ProScan 10T" 52:interface "USB" 53:usbid "0x05e3" "0x0145" 54:status :basic 55 56:model "Reflecta ProScan 7200" 57:interface "USB" 58:usbid "0x05e3" "0x0145" 59:status :good 60:comment "Similar to PrimeFilm 7250 scanner from Pacific Image Electronics" 61 62:model "CrystalScan 3600" 63:interface "USB" 64:usbid 0x05e3 0x0145 65:status :basic 66 67:model "CrystalScan 7200" 68:interface "USB" 69:status :untested 70 71:model "Reflecta CrystalScan 7250" 72:interface "USB" 73:usbid "0x05e3" "0x0145" 74:status :basic 75:comment "Similar to PrimeFilm 7250 scanner from Pacific Image Electronics" 76 77:model "DigitDia 3600" 78:interface "USB" 79:usbid "0x05e3" "0x0142" 80:status :untested 81:comment "Identical to Pacific Image Electronics PowerSlide 3600 scanner" 82 83:model "DigitDia 4000" 84:interface "USB" 85:usbid "0x05e3" "0x0142" 86:status :basic 87:comment "Identical to Pacific Image Electronics PowerSlide 3650 scanner" 88 89:model "DigitDia 5000" 90:interface "USB" 91:usbid "0x05e3" "0x0142" 92:status :untested 93:comment "Identical to Pacific Image Electronics PowerSlide 4000 scanner" 94 95:model "Reflecta DigitDia 6000 Multiple Slide Scanner" 96:interface "USB" 97:usbid "0x05e3" "0x0142" 98:status :good 99:comment "Identical to Pacific Image Electronics PowerSlide 5000 scanner" 100 101; :comment and :url specifiers are optional after :mfg, :model, :desc, 102; and at the top-level. 103