vote up 1 vote down star

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

flag

2 Answers

vote up 0 vote down check
Serial.print(27, BYTE); // ASCII code for the Escape character
Serial.print("i");
link|flag
vote up 1 vote down

Escape is ASCII character code 27. If you are programming in c, you could do:

putchar(27);
putchar('i');

Or, if you want to put the whole thing in a string, you could do something like:
printf("\033i");

the \033 will get replaced with 33 octal, which is 27 decimal by the compiler.

link|flag
The arduino's way: Serial.print("\x1B" "i"); or Serial.print("\033" "i"); – z3a May 22 at 2:36

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.