def __init__(self, port=7): """ For HP3314A, the default HP-IB address is 7 To view the current HP-IB address: press blue button --> Lcl (Local) To change HP-IB address, press Rcl (Recall) and then Lcl --> uss knob to change the port number --> press Sto (Store) and then Lcl """ print "HP3314A function generator" ib_dev.__init__(self, port)
def __init__(self, port=20): ib_dev.__init__(self, port)
def __init__(self, port=10): """ The default GPIB address is 10, which can be changed via "Uilities" --> "GPIB Setup" on the screen """ ib_dev.__init__(self, port)
def __init__(self, port=24, keithley_type='2400c'): ib_dev.__init__(self, port) self.keithley_type = keithley_type print "Keithley sourcemeter %s" % self.keithley_type
def __init__(self, port=11): # The GPIB port can be set in the front panel: # System setup --> GPIB --> GPIB address print "SR760 FFT spectrum analyzer" ib_dev.__init__(self, port)
def __init__(self, port=11): """ For HP3582A, the default HP-IB address is 11 To change it, one needs to open up the top cover and configure the switches inside """ ib_dev.__init__(self, port)
def __init__(self, port=10): print "SR810 DSP lock-in amplifier" ib_dev.__init__(self, port)
def __init__(self, port=17): ib_dev.__init__(self, port)