串口获取内存命令

发布于 2024-08-07 05:41:36 字数 173 浏览 4 评论 0原文

谁能告诉我如何在 C# 中为数字万用表的以下获取内存命令格式化 serialport.write 方法?

分布式LE STX 命令 精氨酸1 精氨酸2 精氨酸3 分布式LE 出口

10小时 02点 4Eh 00点 00点 00点 10小时 03h

非常感谢

Could anyone tell me how to format the serialport.write method in c# for the following get memory command of a digital multimeter?

DLE
STX
Command
arg1
arg2
arg3
DLE
ETX

10h
02h
4Eh
00h
00h
00h
10h
03h

Many thanks

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

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

发布评论

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

评论(1

笛声青案梦长安 2024-08-14 05:41:36

尝试创建一个字节数组,并将其写入端口。

byte[] data = new byte[] {0x10, 0x02, 0x4E, 0x0, 0x0, 0x0, 0x10, 0x03};

port.Write(data, 0, data.Length);

Try creating a byte array, and writing this to the port.

byte[] data = new byte[] {0x10, 0x02, 0x4E, 0x0, 0x0, 0x0, 0x10, 0x03};

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