Hi,
I'm controlling a serial printer from arduino, now it works perfect but i need to send it escape characters to controll some especific features of the printer. Anybody can show me a way to do that?
i need to send "ESC i"
thx
Hi,
I'm controlling a serial printer from arduino, now it works perfect but i need to send it escape characters to controll some especific features of the printer. Anybody can show me a way to do that?
i need to send "ESC i"
thx
Serial.print(27, BYTE); // ASCII code for the Escape character
Serial.print("i");