在C#中通过串口发送ctrl+C?
如何在 C# 中通过串口发送我的设备 ctrl+c ?
How can I send my device ctrl+c through serial port in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 C# 中通过串口发送我的设备 ctrl+c ?
How can I send my device ctrl+c through serial port in C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
串行端口不传输密钥。它们传输字节,通常是
字符的 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.