2c6a6be2d0765c0db2c712218f8fbac0feed0f39
[odoo/odoo.git] / addons / hw_escpos / escpos / supported_devices.py
1 #!/usr/bin/python
2
3 # This is a list of esc/pos compatible usb printers. The vendor and product ids can be found by
4 # typing lsusb in a linux terminal, this will give you the ids in the form ID VENDOR:PRODUCT
5
6 device_list = [
7     { 'vendor' : 0x04b8, 'product' : 0x0e03, 'name' : 'Epson TM-T20' },
8     { 'vendor' : 0x04b8, 'product' : 0x0202, 'name' : 'Epson TM-T70' },
9 ]
10