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
|
|
|
|
|
|
|
|
|||
|
|
|
|
Escape is ASCII character code 27. If you are programming in c, you could do:
putchar(27);
Or, if you want to put the whole thing in a string, you could do something like: the \033 will get replaced with 33 octal, which is 27 decimal by the compiler. |
||
|