00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014 #ifndef _KEITHLEY_485_H_
00015 #define _KEITHLEY_485_H_
00016
00017 #include "AbstractElectrometerClass.h"
00018
00031 class Keithley_485 : public AbstractElectrometerClass
00032 {
00033 public:
00034
00038 Keithley_485 (std::string& comLink_device_name);
00039
00043 virtual ~Keithley_485 (void);
00044
00048 void range_up (void);
00049 void range_down (void);
00050
00054 std::string get_ElectroMeterRange(void);
00055
00059 std::string electrometer_status (void);
00060 };
00061
00063
00064 #endif // _KEITHLEY_485_H_