Metadata-Version: 2.0
Name: LaudaDriver
Version: 1.0.0a7
Summary: Simple helper to control the Lauda thermostat
Home-page: https://uni.lardner.io/Jurek/Lauda_driver
Author: Jerzy Dziewierz
Author-email: jerzy.dziewierz@strath.ac.uk
License: License :: OSI Approved :: Universal Permissive License (UPL)
Keywords: Lauda thermostat driver helper
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Topic :: Scientific/Engineering :: Chemistry
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: Universal Permissive License (UPL)
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Dist: pyserial


Lauda Eco Silver thermostat helper library
==========================================

A small helper module to control the Lauda-Brinkman ECO Silver thermostat, 
commonly found in the University of Strathclyde's CMAC Labs

Usage is fairly obvious:


    import lauda

    lauda.set_pumping_speed(lauda.PumpingSpeed.a_Typical); lauda.set_temp(25.0); lauda.start()

    current_temp_readout = lauda.read_current_temp()


Note that the COM port used is hard-coded to "COM9". 
At this time this can only be changed by editing the source code.


