仪器读写-rust 程序设计语言(2018)中文

时间:2024-06-30 21:16:14
【文件属性】:

文件名称:仪器读写-rust 程序设计语言(2018)中文

文件大小:694KB

文件格式:PDF

更新时间:2024-06-30 21:16:14

R&S 仪器 控制

3.1 仪器访问 首先需要在代码中加载 VISA 库,使用 from visa import * 然后可以使用地址初始化仪器, visa.instrument(resource_name[, **keyw]) 例如: my_instrument = instrument("TCPIP0::192.168.0.23::INSTR") 3.2 仪器读写 Instrument.write(message) 将指定消息写入仪器 例如: my_instrument.write("*IDN?") 或 my_instrument.write("trigger:delay %f" % (interval_in_ms / 1000.0))


网友评论