Hello,
I have problem changing the resistance measurement range using SCPI. I have tried to add :RANG 10000 after "FUNC" in the following working code (Python) that reads resistance using AUTO RANGE:
self.instrument.write(f"SENS:FUNC \"RES\", (@1{channel:02d})")
self.instrument.write(f"ROUT:CLOS (@1{channel:02d})")
return float(self.instrument.query("READ?"))
I only get the SCPI command is invalid popup on DAQ display.
Please help.