通过串行转义字符
我正在从 Arduino 控制串行打印机。 现在它工作完美,但我需要向它发送转义字符来控制打印机的某些特定功能。 有没有办法做到这一点?
我需要发送“ESC i”。
I'm controlling a serial printer from Arduino. Now it works perfectly, but I need to send it escape characters to control some specific features of the printer. Is there a way to do that?
I need to send "ESC i".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
转义符是 ASCII 字符代码 27。如果您使用 C 进行编程,您可以do:
或者,如果您想将整个内容放入字符串中,您可以执行以下操作:
\033
将被替换为八进制 33,编译器将其替换为十进制 27。Escape is ASCII character code 27. If you are programming in C, you could do:
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.