在C#中通过串口发送ctrl+C?

发布于 2024-10-15 09:47:28 字数 56 浏览 5 评论 0原文

如何在 C# 中通过串口发送我的设备 ctrl+c

How can I send my device ctrl+c through serial port in C#?

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

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

发布评论

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

评论(1

逆蝶 2024-10-22 09:47:28

串行端口不传输密钥。它们传输字节,通常是
字符的 ASCII 表示形式。

“Keys.ControlKey & Keys.C”与感知 PC 上发生的情况有关
键盘。但串口并不传输键盘的全部状态。
例如,F 键和箭头完全不在 ASCII 范围内
系统。

ASCII 图表会告诉您,例如,Ctrl-A 为 1,Ctrl-B 为 2 , Ctrl-C 为 3,
“A”是 65,依此类推。

Serial ports don't transmit keys. They transmit bytes, which are normally
the ASCII representations of characters.

"Keys.ControlKey & Keys.C" has to do with sensing what is going on on a PC
keyboard. But serial ports do not transmit the whole state of the keyboard.
For instance, the F keys and the arrows are entirely outside the ASCII
system.

An ASCII chart will tell you that, for instance, Ctrl-A is 1, Ctrl-B is 2, Ctrl-C is 3,
'A' is 65, and so on.

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