如何通过串口向arduino发送整数?

发布于 2024-09-10 22:37:27 字数 348 浏览 4 评论 0原文

我想通过串行连接将整数发送到 Arduino。 例如,当我发送“1”时,Arduino收到的数据是“49” 当我发送“a”时,Arduino收到的数据是“97”

Pythonord()unichr()。它们的行为是这样的:

unichr(97) = u"a"
ord(u"a")=97

是否有等效的 C 函数?

I want to send integers to Arduino via a serial connection.
For example, when I send "1" the data received by Arduino is "49"
and when I send "a" the data received by Arduino is "97"

There are two functions in Python, ord() and unichr(). They behaved like this:

unichr(97) = u"a"
ord(u"a")=97

Are there equivalent C functions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

很糊涂小朋友 2024-09-17 22:37:27

只要您将字符存储为其 ASCII 值,最简单的方法 - 如果您的目标是转换个位数 - 就是减去 0 的 ASCII 值:'8'- '0' 会给你 unsigned char 值 8。你需要确保它是一个数字而不是某个字符,但这很容易通过检查结果是否低于或等于 9 来完成。

同样,你得到通过添加值“0”得到单个数字 z 的 ASCII 值。

As long as you have your characters stored as their ASCII-value, the easiest way - if your goal is converting single digits - is to subtract the ASCII-value of 0: '8'-'0' will give you the unsigned char value 8. You need to make sure it's a digit and not some character, but that is easily done by just checking if the result is below or equal 9.

Similarly, you get the ASCII-value of a single digit z by adding the value of '0'.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文