escape character via serial - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T01:46:36Zhttp://stackoverflow.com/feeds/question/895842http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/895842/escape-character-via-serial1escape character via serialz3a2009-05-21T23:50:44Z2009-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#8958841Answer by Matthias Wandel for escape character via serialMatthias Wandel2009-05-22T00:05:39Z2009-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#8972700Answer by Matthew Murdoch for escape character via serialMatthew Murdoch2009-05-22T10:38:00Z2009-05-22T12:15:27Z<pre><code>Serial.print(27, BYTE); // ASCII code for the Escape character
Serial.print("i");
</code></pre>