An open API service indexing awesome lists of open source software.

https://github.com/numat/ika

Python driver and command-line tool for IKA products
https://github.com/numat/ika

Last synced: 6 months ago
JSON representation

Python driver and command-line tool for IKA products

Awesome Lists containing this project

README

          

ika
===

Python ≥3.8 driver and command-line tool for IKA products.
- Eurostar 60/100 control overhead stirrers
- MATRIX ORBITAL shaker
- RET control-visc hotplate/stirrer
- Vacstar control vacuum pump

Installation
============

```
pip install ika-control
```

Usage
=====

## Command Line

```
$ ika : --type hotplate
$ ika : --type overhead
$ ika : --type shaker
$ ika : --type vacuum
```

## Python

This uses Python ≥3.5's async/await syntax to asynchronously communicate with an IKA device. For example:

```python
import asyncio
from ika import Hotplate, OverheadStirrer

async def get():
async with OverheadStirrer('ip-address:port') as stirrer:
print(await stirrer.get())
async with Hotplate('ip-address:port') as hotplate:
print(await hotplate.get())

asyncio.run(get())
```
Hardware configuration
======================
For Control-Visc hotplates, make sure the "Eurostar" control option is turned off
in the system settings. Otherwise, the device will turn the heater off when the serial
cable is unplugged.

Acknowledgements
================

©2023 Alexander Ruddick

Uses code from [the Hein group](https://gitlab.com/heingroup/ika), but otherwise no affiliation.
As of 2023, that project appears to have been abandoned.