polyscience

Python driver for Polyscience circulating baths.


License
GPL-2.0
Install
pip install polyscience==0.1.16

Documentation

polyscience

Python driver for Polyscience Advanced Digital Controller Circulating Baths.

Note: We've moved away from using these baths, opting instead for Huber. On top of the communication issues, these units were remarkably unreliable.

This was created to support older circulating baths (before touch screen models). These older devices have ethernet ports, but only support serial communication over UDP. This code attempts to handle the awkwardness of serial-over-UDP communication, providing a simple API to read and control the unit.

Installation

pip install polyscience

Usage

Command Line

Read the bath from any networked computer with:

polyscience [ip-address]

This provides methods to set temperature, pump speed, control, and others. See polyscience --help for more.

Python

For complex interaction, use this as part of a Python script.

from polyscience import CirculatingBath
bath = CirculatingBath('192.168.1.100')
print(bath.get_setpoint())

A common usage is to create an interactive web site. This driver blocks (my earlier async implementations were prone to overwhelming the bath), so put the bath i/o in its own thread.