Connecting to ATS 545 by Temptronic in Python
Instrument Card
Advanced Temperature Source for fast and precise thermal conditioning of components, parts, hybrids, modules, sub-assemblies, and printed circuit boards.
Device Specification: here
Manufacturer card: TEMPTRONIC
Temptronic temperature forcing systems, are designed for testing and characterization of semiconductors, ICs, chips, electronics, and materials
- Headquarters: USA
- Yearly Revenue (millions, USD): 19
- Vendor Website: here
Connect to the ATS 545 in Python
Read our guide for turning Python scripts into Flojoy nodes.
PROTOCOLS > SCPI
from pymeasure.instruments.temptronic.temptronic_ats545 import ATS545
# Connect to the ATS 545 Temperature Controllerts = ATS545('ASRL3::INSTR') # Replace 'ASRL3::INSTR' with the appropriate adapter address
# Configure the Temperature Controllerts.configure() # Basic configuration (defaults to T-DUT)
# Start the flowts.start() # Starts the flow (head position not changed)
# Set the temperature to 25 degrees Celsiusts.set_temperature(25) # Sets the temperature to 25 degC
# Wait for the temperature to settlets.wait_for_settling() # Blocks script execution and polls for settling
# Shutdown the Temperature Controllerts.shutdown(head=False) # Disables the thermostream, keeps head down
This script connects to the ATS 545 Temperature Controller using the specified adapter address. It then configures the Temperature Controller, starts the flow, sets the temperature to 25 degrees Celsius, waits for the temperature to settle, and finally shuts down the Temperature Controller.
Note: Make sure to replace 'ASRL3::INSTR'
with the appropriate adapter address for your setup.