diff --git a/instrument_plugins/Keithley_2000.py b/instrument_plugins/Keithley_2000.py index 9c7793ac..a2fea0a5 100644 --- a/instrument_plugins/Keithley_2000.py +++ b/instrument_plugins/Keithley_2000.py @@ -1,4 +1,4 @@ -# Keithley_2100.py driver for Keithley 2100 DMM +# Keithley_2000.py driver for Keithley 2000 DMM # Pieter de Groot , 2008 # Martijn Schaafsma , 2008 # Reinier Heeres , 2008 - 2010 @@ -37,13 +37,13 @@ def bool_to_str(val): else: return "OFF" -class Keithley_2100(Instrument): +class Keithley_2000(Instrument): ''' - This is the driver for the Keithley 2100 Multimeter + This is the driver for the Keithley 2000 Multimeter Usage: Initialize with - = instruments.create('', 'Keithley_2100', + = instruments.create('', 'Keithley_2000', address='', reset=, change_display=, @@ -53,7 +53,7 @@ class Keithley_2100(Instrument): def __init__(self, name, address, reset=False, change_display=True, change_autozero=True): ''' - Initializes the Keithley_2100, and communicates with the wrapper. + Initializes the Keithley_2000, and communicates with the wrapper. Input: name (string) : name of the instrument @@ -67,7 +67,7 @@ def __init__(self, name, address, reset=False, None ''' # Initialize wrapper functions - logging.info('Initializing instrument Keithley_2100') + logging.info('Initializing instrument Keithley_2000') Instrument.__init__(self, name, tags=['physical']) # Add some global constants