receipt-print-hq / escpos-printer-db

Database of ESC/POS thermal receipt printers
https://mike42.me/escpos-printer-db/
Creative Commons Attribution 4.0 International
108 stars 49 forks source link

Include printer profiles being prototyped for python-escpos #4

Open mike42 opened 8 years ago

mike42 commented 8 years ago

As a python-escpos dev I want the profiles prototyped at python-escpos/python-escpos#149 to be included in this database So that I can fetch a single file with everybody's profile-related work in it

mike42 commented 8 years ago

YAML snippet for things left to add. TM-P80 and TM-T88II added with current values at #9

    TM-P60II 2 (58mm):
        inherits: default
        manufacturer: "Epson"
        media:
            width:
              mm: 58
        fonts:
            a: {columns: 35}
            b: {columns: 42}
            c: {columns: 52}

    TM-P60II 2 (60mm):
        inherits: default
        manufacturer: "Epson"
        media:
            width:
              mm: 60
        fonts:
            a: {columns: 36}
            b: {columns: 43}
            c: {columns: 54}

    TM-P20 2:
        inherits: default
        manufacturer: "Epson"
        fonts: [a, b c, d, e, f]

    TM-T90:
        inherits: default
        manufacturer: "Epson"
        colors:
            - black
            - red

(code pages will need a check-over if bugs crop up)