• 大小: 1.70KB
    文件类型: .py
    金币: 1
    下载: 0 次
    发布日期: 2021-03-03
  • 语言: Python
  • 标签: python  VISA  RS232  

资源简介

Read an Digit-Multimeter in Python

资源截图

代码片段和文件信息

################################################################################
# © GWINSTEK 2019
#   GDM-8300 series DMM  USB_CDC & RS232 port DEMO Program
################################################################################

import visa    # Need install pyvisainstrument


# Change VISA_ADDRESS to a serial VISA address e.g. ‘ASRL2::INSTR‘
VISA_ADDRESS = ‘ASRL27::INSTR‘   #Your instruments VISA address goes here!‘

try:
    # Create a connection (session) to the serial instrument
    resourceManager = visa.ResourceManager()
    session = resourceManager.open_resource(VISA_ADDRESS)
    print(VISA_ADDRESS)

    # For Serial and TCP/IP socket connections enable the read Termination Character or read‘s will timeout
    if session.resource_name.startswith(‘ASRL‘) or session.resource_name.endswith(‘SOCKET‘):
        session.rea

评论

共有 条评论