Connecting to Keysight N3300A by Keysight in Python
Instrument Card
The Keysight N3300A is a full-rack width mainframe with 6-slots that accepts combinations of N330x user-installable load modules (150 W to 600 W) for easy system configuration and future reconfiguration. The N3300A holds up to six N3302A, N3303A, N3304A, N3307A load modules, or three N3305A, N3306A double-wide modules, allowing a total up to 1,800 watts of maximum power.
Device Specification: here
Manufacturer card: KEYSIGHT
Keysight Technologies, or Keysight, is an American company that manufactures electronics test and measurement equipment and software
- Headquarters: USA
- Yearly Revenue (millions, USD): 5420
- Vendor Website: here
Connect to the Keysight N3300A in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
To connect to a Keysight N3300A Electronic Load using Qcodes Community, you can use the following code:
from qcodes.instrument_drivers.Keysight.Keysight_N3300A import Keysight_N3300A
# Create an instance of the instrumentload = Keysight_N3300A('load', 'TCPIP0::192.168.1.1::inst0::INSTR')
# Connect to the instrumentload.connect()
# Now you can use the instrument to perform operations# For example, you can set the load currentload.current.set(1) # Set the load current to 1 Ampere
# Disconnect from the instrumentload.disconnect()
Note: Replace 'TCPIP0::192.168.1.1::inst0::INSTR'
with the actual VISA address of your Keysight N3300A Electronic Load.