Connecting to PL068-P by Aimtti in Python
Instrument Card
Bench/System Linear Regulated DC Power Supply Single Output, 6V/8A, USB, RS232, LAN(LXI) and Analogue interfaces
Device Specification: here
Manufacturer card: 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 PL068-P in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
Here is a Python script that uses Qcodes to connect to a PL068-P Power Supply:
This script creates a custom AimTTiChannel
class that inherits from Parameter
and represents a single channel of the Aim TTi power supply. It also creates a AimTTi
class that inherits from VisaInstrument
and represents the entire power supply instrument.
The AimTTi
class defines parameters for the output state (output
) and voltage (voltage
). It also overrides the get_idn
and get_address
methods to provide the identification and address information of the power supply.
The script creates an instance of the AimTTi
class, connects to the power supply at the specified address, and demonstrates how to use the defined parameters to get and set values.