通过串行转义字符

发布于 2024-07-21 03:51:15 字数 103 浏览 3 评论 0原文

我正在从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

醉殇 2024-07-28 03:51:15

转义符是 ASCII 字符代码 27。如果您使用 C 进行编程,您可以do:

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

或者,如果您想将整个内容放入字符串中,您可以执行以下操作:

printf("\033i");

\033 将被替换为八进制 33,编译器将其替换为十进制 27。

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.

暮倦 2024-07-28 03:51:15
Serial.print(27, BYTE); // ASCII code for the Escape character
Serial.print("i"); 
Serial.print(27, BYTE); // ASCII code for the Escape character
Serial.print("i"); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文