LabVIEW 字符串输出

发布于 2024-08-31 21:02:56 字数 104 浏览 6 评论 0原文

如何使用 LabVIEW 从​​ DAQ 板 (NI-USB 6259) 发送字符串输出?我想使用 LabVIEW 将“CELL 0”或“READ”等命令发送到恒电位仪设备。

谢谢

How do I send a string output from a DAQ Board (NI- USB 6259) using LabVIEW? I want to send commands such as "CELL 0" or "READ" to a potentiostat device using LabVIEW.

Thanks

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

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

发布评论

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

评论(2

憧憬巴黎街头的黎明 2024-09-07 21:02:57

正如 eaolson 所说,数据采集并不是为了控制设备。然而,深入了解通信协议是一个有趣的项目。使用 DAQ 执行此操作需要:

  • 识别协议(GPIB 或 RS-232)
  • 从 DAQ 输出连接器连接电缆
  • 对于每个命令,通过使用字母的 ASCII 代码、停止位等在 LabVIEW 中生成波形。这是最有趣的部分(INMHO,但我知道这不是每个人!)
  • 发送它(使用DAQ模拟写入VI,你应该找到很多这样的例子)
  • 示波器将是你最好的朋友

As eaolson said a DAQ is not intended to control devices. However it is an interesting project to enter the guts of the communication protocol. Doing it with a DAQ would require to:

  • Identify the protocol (GPIB or RS-232)
  • Make your cable from the DAQ output connector
  • For each command, generate the waveform in LabVIEW, by using the letters' ASCII code, stop bits, etc. This is the funniest part (INMHO, but I understand it's not everybody!)
  • Send it (using DAQ analog write VIs, you should find many examples for this)
  • The oscilloscope will be your best friend
好听的两个字的网名 2024-09-07 21:02:56

6259 不进行字符串输出。它是一个数据采集板,用于读取/获取模拟电压或发送/接收单独的数字信号。它不是通讯设备。

如果您真的想将字符串发送到此设备,您可能需要更像 RS- 232GPIB 连接。

The 6259 doesn't do string output. It's a data acquisition board that's intended for reading/sourcing analog voltages or sending/receiving individual digital signals. It's not a communications device.

If you're really trying to send strings to this device, you probably need something more like an RS-232 or GPIB connection.

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