Hello community,
My project consists on controlling a BEEPRT LTK-230 Thermal printer
you can see the information on Beeprt LTK-230 POS Printer - 80mm Thermal Receipt Printer, with arduino uno, and RS232 to TTL Serial Port Converter Module Connector MAX3232 Serial Module
This printer use the TSPL command, I have tried to do a test with the code that I leave below, but unfortunately I don't get any results.
String str = "SIZE 72 mm,50mm\r\n DIRECTION 0,0\r\n SET CUTTER 1\r\n SET GAP ON\r\n SPEED 6\r\n DENSITY 5\r\n CLS\r\n TEXT 80,85,\"3.EFT\",0,4,4,\"BEEPRT\"\r\n LINE 0,100,576,100,5\r\n TEXTBOX 0,280,\"3.EFT\",0,1,1,510, L32,\"Nanjing Beeprt Information Technology Co., LTD -- Website:www.beeprt.com\" BARCODE 10,140,\"128\",80,0,0,3,3,\"9878787689653565567876\"\r\n PRINT 1,1\r\n";
void setup() {
Serial.begin(115200);
}
void loop() {
delay(2000);
Serial.println(str);
delay(500);
Serial.println("Test End");
}
any help, information or hint will be welcome, thank you very much.
