-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from SiLab-Bonn/keithley2470
ENH: Adds support for keithley 2470
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Device description for the Keithley 2470 Sourcemeter. | ||
# set_ function expect a parameter, get_ function return a parameter. | ||
# Just the very basic commands are implemented here. | ||
identifier : KEITHLEY INSTRUMENTS,MODEL 2470 | ||
|
||
on : OUTP ON | ||
off : OUTP OFF | ||
get_current : SENSE:FUNC 'CURR';:READ? | ||
set_current : SOUR:CURR | ||
set_voltage : SOUR:VOLT | ||
get_voltage : SENSE:FUNC 'VOLT';:READ? | ||
set_current_limit : SOUR:VOLT:ILIM | ||
get_current_limit : SOUR:VOLT:ILIM? | ||
set_voltage_limit : SOUR:CURR:VLIM | ||
get_voltage_limit : SOUR:CURR:VLIM? | ||
source_volt : SOUR:FUNC VOLT | ||
source_current : SOUR:FUNC CURR | ||
get_source_mode : SOUR:FUNC? | ||
set_autorange : SOUR:CURR:RANG:AUTO ON | ||
set_voltage_range : SOUR:VOLT:RANGE | ||
get_autorange : SOUR:CURR:RANG:AUTO? | ||
four_wire_on: SYST:RSEN ON | ||
four_wire_off: SYST:RSEN OFF | ||
get_remote_sense: SYST:RSEN ? |