如何接受 Detecto AS-350D 的重量数据
我找到了一个可以连接到计算机的体重秤 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用C#开发了一种串口编程语言。也许你想尝试一下。它还具有内置调试器,并且需要 .NET Framework 3.5 或更高版本。您不必安装任何其他编程工具。它可以在 sourceforge 上免费获得。
如果您简单地创建具有以下状态的驱动程序,您将能够从串行端口获取数据。
下载链接
有关更多信息,请访问项目主页
如果您有任何疑问,请随时提问。
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.
Download Link
For more information, please visit Project homepage
If you have any questions, please feel free to ask.