Connecting to SP983c by Basel in Python
Instrument Card
The low-noise high-stability (LNHS) I to V Converter offers ultra-low noise, excellent stability, and unique features such as a floating input and the possibility to apply an external bias voltage
Device Specification: here
Manufacturer card: BASEL
Basel Precision Instruments develop ultra-low-noise precision laboratory and scientific electronics for applications requiring ultra-high sensitivity, such as low-temperature quantum physics.
- Headquarters: Switzerland
- Yearly Revenue (millions, USD): 1
- Vendor Website: here
Connect to the SP983c in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
Explanation:
- Import the necessary modules:
qcodes
andBaselSP983c
fromqcodes.instrument_drivers.physical_instruments
. - Create an instance of the
BaselSP983c
instrument with a desired name and optionalinput_offset_voltage
parameter. - Connect to the instrument using the
connect()
method. - Use the
get_idn()
method to retrieve the IDN information of the instrument. - Print the IDN information.
- Disconnect from the instrument using the
disconnect()
method.