escape character via serial - Stack Overflow most recent 30 from stackoverflow.com 2009-12-23T01:46:36Z http://stackoverflow.com/feeds/question/895842 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/895842/escape-character-via-serial 1 escape character via serial z3a 2009-05-21T23:50:44Z 2009-05-22T12:15:27Z <p>Hi,</p> <p>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?</p> <p>i need to send "ESC i"</p> <p>thx</p> http://stackoverflow.com/questions/895842/escape-character-via-serial/895884#895884 1 Answer by Matthias Wandel for escape character via serial Matthias Wandel 2009-05-22T00:05:39Z 2009-05-22T00:05:39Z <p>Escape is ASCII character code 27. If you are programming in c, you could do:<p> putchar(27);<br> putchar('i');<p> Or, if you want to put the whole thing in a string, you could do something like:<br> printf("\033i");<p> the \033 will get replaced with 33 octal, which is 27 decimal by the compiler.</p> http://stackoverflow.com/questions/895842/escape-character-via-serial/897270#897270 0 Answer by Matthew Murdoch for escape character via serial Matthew Murdoch 2009-05-22T10:38:00Z 2009-05-22T12:15:27Z <pre><code>Serial.print(27, BYTE); // ASCII code for the Escape character Serial.print("i"); </code></pre>