ESCPOS
ESCPOS copied to clipboard
A ESC/POS Printer Commands Helper
Dependent on #29 Once the new Barcode and QRCode methods are created, we can create methods that will extend a string (the barcode data) like this ```cs public static byte[]...
Simple ESC/POS [Commands](https://github.com/igorocampos/ESCPOS/blob/3b43cf7d808e9e790bdd2a0280f9952f5fe0bea5/ESCPOS/Commands.cs#L11) are actually just static properties of Commands class. And they are easy on the eye when used. On the other hand, full commands require parameters, which is...
`PrintBarCode` and `PrintQRCode` should be renamed as they don't actually print anything, but rather create the necessary command for a barcode/qrcode. New name should be just `Barcode` and `QRCode` As...