# -*- coding: utf-8 -*- """ this short program lists all instruments currently detected automatically by the ResourceManager usefull to find the correct VISA Address string e.g. 'USB0::1003::8293::HEWLETT-PACKARD_E3634A_0_1.6-5.0-1.0::0::INSTR' """ import pyvisa as visa rm = visa.ResourceManager() print(rm.list_resources()) rm.close()