01-24-2025 08:15 AM
Hello,
I try to write a skript to run my measurement on a Keithley 6487. To get comfortable I wrote a small skript to play around but have trouble with the readout of voltage and current. I have little experience in writing pyvisa code for Keithley 2600 series but not for this one. The user manual also does not help very much. In the following code when "(...)device.query('MEAS:VOLT?'))" is reached the error "ERR -133" gets thrown which I looked up in the manual but dont know how to continue from here. I hope you can help me. Im connected via RS-232 since its the only "to-usb-adapter" I have at the lab here.
Thank you in advance
Solved! Go to Solution.
01-26-2025 09:09 PM
Essentially, you are using a command that the instrument does not support!
As per the programmer's manual, there is no command such as "MEAS:VOLT?" or "MEAS:CURR?"
Please read the manual and use only compatible commands.
01-27-2025 02:40 AM
Thank you for your reply..
I already looked into the manual regarding this and did not find the correct commands..
Is there a chance you would know where to find them?
Thank you
01-27-2025 03:20 PM
@Desm333 wrote:
Thank you for your reply..
I already looked into the manual regarding this and did not find the correct commands..
Is there a chance you would know where to find them?
Thank you
Checkout chapter 3 from pg.43 onwards
Here is an SCPI example from the manual,
01-27-2025 03:23 PM
With "READ?" I only receive the information on the current and not the applied voltage which was main issue..
Reading the current works totally fine with it though..
01-27-2025 03:29 PM
@Desm333 wrote:
With "READ?" I only receive the information on the current and not the applied voltage which was main issue..
Reading the current works totally fine with it though..
I bet the 6487 cannot measure the applied voltage back, unlike an SMU (at least based on the user manual).
01-27-2025 03:31 PM
Then I wont bet against it.
Thank you very much.