如何使用Python脚本控制LabView VI前面板开关(开/关、条调节器)?
我有一个 LabView 前面板控制硬件的开关和传感器电压调节器,需要使用 Python 脚本来控制它们。我对LabView
了解不多。请解释如何做到这一点。
I have a LabView
front panel controlling switches and sensor voltage adjustors to the hardware and need to control these with a Python script. I do not have much knowledge of LabView
. Please explain how this could be done.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在LabVIEW讨论板上找到了一篇参考文献,该参考文献成功this,它使用以下代码:
看来您需要 Python 中的 win32com.client 库。
I found one reference on the LabVIEW discussion board that succeeded in this, it uses the following code:
It seems like you need the win32com.client library in Python.
您还可以使用 Mark E. Smith 的优秀文章 XML-RPC 包。
You can also push data between LabVIEW and Python using Mark E. Smith's excellent XML-RPC package.