コード例 #1
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 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)
コード例 #2
0
 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)
コード例 #3
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 def __init__(self, port=20):
     ib_dev.__init__(self, port)
コード例 #4
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 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)
コード例 #5
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 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
コード例 #6
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 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)
コード例 #7
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 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)
コード例 #8
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 def __init__(self, port=10):
     print "SR810 DSP lock-in amplifier"
     ib_dev.__init__(self, port)
コード例 #9
0
ファイル: i9s.py プロジェクト: lijunhw/instruments
 def __init__(self, port=17):
     ib_dev.__init__(self, port)
コード例 #10
0
 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)
コード例 #11
0
 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)
コード例 #12
0
 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
コード例 #13
0
 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)
コード例 #14
0
 def __init__(self, port=10):
     print "SR810 DSP lock-in amplifier"
     ib_dev.__init__(self, port)
コード例 #15
0
 def __init__(self, port=17):
     ib_dev.__init__(self, port)
コード例 #16
0
 def __init__(self, port=20):
     ib_dev.__init__(self, port)