pytemperaturectrl

A temperature control library


Keywords
temperature, control, serial, julabo
License
Other
Install
pip install pytemperaturectrl==0.1

Documentation

pytemperaturectrl - Python package

This is a python library to communicate with temperature control unit. Work with Julabo Corio CD www.julabo.com

Some Samples

open port, get version

>>> from pytemperaturectrl import julabo
>>> j = julabo.Julabo()
>>> j.open('COM4')
>>> j.getVersion()
'JULABO CORIO CD - 200F 230V 50Hz Version 2.4.1'

close port

>>> j.close()