Skip to content

Connecting to PL303QMD-P by Aimtti in Python

Instrument Card

Bench/System Linear Regulated DC Power Supply Dual Output, 2 x 30V/3A, USB, RS232 & LAN Interfaces

PL303QMD-P

Device Specification: here

Manufacturer card: AIMTTI

AIMTTI

TTi (Thurlby Thandar Instruments) is a leading manufacturer of electronic test and measurement instruments. These products are sold throughout the world via carefully selected distributors and agents in each country. We are located in Huntingdon near to the famous university city of Cambridge, within one of the high technology areas of the United Kingdom.

  • Headquarters: UK
  • Yearly Revenue (millions, USD): 9000
  • Vendor Website: here

Demo: Measure a solar panel IV curve with a Keithley 2400

Connect to the PL303QMD-P in Python

PROTOCOLS > SCPI

To connect to a PL303QMD-P Power Supply using Qcodes, you can use the following Python script:

from qcodes.instrument_drivers.aimtti.AimTTi import AimTTi
# Create an instance of the AimTTi instrument
aim_tti = AimTTi("aim_tti", "TCPIP0::192.168.1.1::inst0::INSTR")
# Connect to the instrument
aim_tti.connect()
# Now you can use the instrument to perform operations
# For example, to get the voltage of channel 1:
voltage = aim_tti.ch1.volt.get()
print("Voltage:", voltage)
# You can also set the voltage of channel 1:
aim_tti.ch1.volt.set(5.0)
# Disconnect from the instrument
aim_tti.disconnect()

Note: Replace "TCPIP0::192.168.1.1::inst0::INSTR" with the actual VISA resource address of your PL303QMD-P Power Supply.