Skip to content

Connecting to ECO 560 by Temptronic in Python

Instrument Card

The ECO-560/660 ThermoStream uses less energy while delivering high-performance temperature control with low noise and low cost.

ECO 560

Device Specification: here

Manufacturer card: TEMPTRONIC

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 ECO 560 in Python

PROTOCOLS > SCPI

from pymeasure.adapters import VISAAdapter
from pymeasure.instruments.temptronic.eco560 import ECO560
# Create a VISA adapter for communication
adapter = VISAAdapter("TCPIP::192.168.1.1::INSTR")
# Create an instance of the ECO560 instrument
eco560 = ECO560(adapter)
# Connect to the instrument
eco560.connect()
# Perform operations with the instrument
temperature = eco560.temperature
print("Current temperature:", temperature)
# Disconnect from the instrument
eco560.disconnect()

This script uses Pymeasure to connect to an ECO 560 Temperature Controller. It creates a VISA adapter for communication, creates an instance of the ECO560 instrument, connects to the instrument, performs operations with the instrument (which are not shown in the provided code), and finally disconnects from the instrument.