Skip to content

kduma-OSS/CS-Raw-Printer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CS-Raw-Printer

Raw Printing helper for dot matrix and thermal printers.

Usage

var printer = new RawPrinter.Printer("Printer Name");
if (!printer.Open("Job Name")) return;
printer.SendData("This text is sent to a line printer\r\n");
printer.SendData("===================================\r\n");
printer.Close();

Antonino Porcino

A special thanks to Antonino Porcino, an original code creator that this package is based on.