资源简介
使用此代码可以控制常用编程电源,示波器等仪器
代码片段和文件信息
#coding:utf-8
import visa
class Meas():
def __init__(self):
rm = visa.ResourceManager()
res = rm.list_resources()
for name in res:
if ‘TCP‘ in name:
self.Meas_inst = rm.open_resource(name)
welcome = self.Meas_inst.query(“*IDN?“)
self.Meas_inst.write(“SYSTEM: REMOTE“)
print(welcome)
def Meas_on(self):
self.Meas_inst.write(“OUTP ON“)
def Meas_off(self):
self.Meas_inst.write(“OUTP OFF“)
def set_Meas_VOLT(self VoLT):
self.Meas_inst.write(“VOLT %s“ % VoLT)
def set_Meas_CURR(self VoLT):
self.Meas_inst.write(“CURR %s“ % VoLT)
def get_Meas_CURR(self):
return self.Meas_inst.query(“MEAS:CURR?“)
def get_Meas_VOLT(self):
return self.Meas_inst.query(“MEAS:VOLT?“)
# def Meas_off(self):
# self.Meas_inst.write(“OUTP OFF“)
#
# def Meas_on(self):
# self.Meas_inst.write(“OUTP ON“)
if __name__ == “__main__“:
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
I.A.... 1135 2020-03-02 17:27 Power\Py_Meas.py
I.A.... 1328 2020-03-11 15:07 Power\Py_Power.py
目录 0 2020-03-11 15:07 Power
----------- --------- ---------- ----- ----
2463 3
- 上一篇:强化学习与仿真的结合
- 下一篇:Python几行代码写完数组的增删查改排序
相关资源
- Python几行代码写完数组的增删查改排
- python 多张图片黑底白字转白底黑字
- 8数码问题的python解决方案(代码)
- python生成二维码(基于qrcode)
- Python爬取人教网教材
- 像计算机科学家一样思考Python (英文
- python 自动收邮件(基于imaplib)
- pytorch实现logistic回归
- sqlalchemy
- Python数据结构 随书源码
- python中matplotlib运用(teamwork-4.ipynb)
- python实现贪吃蛇游戏
- 随机森林分类(python代码)
- python五子棋
- python动画(基于turtle+ math)
- python for给一列求偶数和奇数和统计个
- python tensorFlow AND和XOR
- python 字符串包附 函数 (in用法)
- python while
- python battleship 小游戏
- python 实现电子计算机
- python 手机号码运营商查询
- python 计算器
- python进行等宽离散并将结果写入exce
- python的网易云简单爬虫(已不能音乐
- python给图片增加透明文字水印
- python 单例模式
- python 给图片增加透明水印(文字)
- python采集百度贴吧图片并保存到本地
- Python给照片换底色(基于opencv模块)
评论
共有 条评论