如何接受 Detecto AS-350D 的重量数据

发布于 2024-09-29 03:44:15 字数 228 浏览 1 评论 0原文

我找到了一个可以连接到计算机的体重秤 Detecto AS-350D (http://cardinal-detecto.centralcarolinascale.com/AS-PC-Computer.htm)。我希望有人能帮助我弄清楚如何从中获取信息(重量)。我环顾四周,但似乎找不到任何相关信息。我从来没有编写过从像这样的设备接受数据的程序,所以有点困惑在哪里查看。谢谢。

更新:我正在用VB编码,设备通过串口连接到计算机。

I've found a scale, Detecto AS-350D (http://cardinal-detecto.centralcarolinascale.com/AS-PC-Computer.htm), that hooks up to a computer. I was hoping someone could help me figure out how to get the information (weight) from it. I've looked around but can't seem to find any information on it. I've never wrote a program where I accepted data from a device likes this so kind of confused where to look. Thanks.

Update: I'm coding in VB, and the device connects to the computer via serial port.

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

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

发布评论

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

评论(1

摘星┃星的人 2024-10-06 03:44:15

我用C#开发了一种串口编程语言。也许你想尝试一下。它还具有内置调试器,并且需要 .NET Framework 3.5 或更高版本。您不必安装任何其他编程工具。它可以在 sourceforge 上免费获得。

如果您简单地创建具有以下状态的驱动程序,您将能够从串行端口获取数据。

state Init
  recv();
end state

下载链接

有关更多信息,请访问项目主页

如果您有任何疑问,请随时提问。

I developed a serial port programming language in C#. maybe you want to try it. It also has a built-in debugger and it requires .NET Framework 3.5 or above. you do NOT have to install any other programming tools. It is freely available on sourceforge.

If you create a driver simply with the following state, you will be able to get the data from the serial port.

state Init
  recv();
end state

Download Link

For more information, please visit Project homepage

If you have any questions, please feel free to ask.

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