A python controller for syringe pumps, e.g. Legato 100
Project description
Python controller for Legato family of syringe pumps
Control a syringe pumpt (e.g. Legato 100 / 101) using a computer. This package uses a COM port to communicate with the pump via an USB cable. It enables you to write python programs that control the pump, e.g. turn it on and off, set the flow rate, etc.
Installation
pip install python-syringe-pump
or
poetry add python-syringe-pump
Usage
Working example
Copy-paste this to get going!
import asyncio
import aioserial
from syringe_pump import Pump, Quantity
async def main():
serial = aioserial.AioSerial(port="COM4", baudrate=115200, timeout=2)
async with Pump(serial=serial) as pump:
await pump.infusion_rate.set(Quantity("1 ml/min"))
await pump.run()
await asyncio.sleep(10)
# pump will stop when exiting the context manager
asyncio.run(main())
Curious about the pieces of code above? Read on!
Serial port connection
The syringe_pump uses aioserial
to communicate with the pump via the COM port.
To use the controller, create a serial connection and pass it into the Pump class.
import aioserial
serial = aioserial.AioSerial(port="COM4", baudrate=115200, timeout=2)
Async communication
This package uses asyncio to communicate with the pump.
As a result, you need to add a few await statements to your code, which may seem like a pain.
However, the benefits will be worth it, especially when working with multiple pumps or sending experiment results via a network.
from syringe_pump import Pump, Quantity
pump = await Pump.from_serial(serial=serial)
await pump.infusion_rate.set(Quantity("1 ml/min"))
await pump.run()
Note: The from_serial class method will configure the pump to
use the correct communication protocol and disable NVRAM, following manufacturer's recommendations.
Async context manager
In python, it's common to use context managers to handle external resources such as files, network connections, etc.
Instead of the above examle, you can use the Pump as such context manager, which will
automatically stop the pump in case of an error or at the end of the program.
from syringe_pump import Pump, Quantity
async with Pump(serial=serial) as pump:
await pump.infusion_rate.set(Quantity("1 ml/min"))
await pump.run()
Running async code
To run the async code in a normal python file,
you need to use the asyncio.run function or similar:
import asyncio
# in regular python file:
async def main():
asyncio.sleep(1)
asyncio.run(main())
Note: To benefit from non-blocking asyncio code, use asyncio.sleep instead of time.sleep.
Note: in a jupyter notebook, you can use await directly in the cell:
# in jupyter notebook only:
await main()
API
Units
The pump controller uses the quantiphy package to handle flow rates, volumes etc.
Example usage:
from syringe_pump import Quantity
Quantity("1 ml/min")
Quantity("13.54 ml")
Pump class
The controller implements most of the functionality specified in Legato user Commands.
The methods and their parameters are easy to discover using autocomplete in your IDE.
Here's a quick overview of the popular methods:
run&stop: control the pump operationset_brightness: control the onboard display. Set to 0 to turn off.set_force&get_force: control the force applied to the syringe
Next, the pump controller has some properties that allow you to manage other parameters:
Pump.infusion_rate and Pump.withdrawal_rate
The pump flow rates can be controlled here, including ramping. Common methods available are:
setandgetset_ramp(start, end, duration)
Example:
rate = await pump.infusion_rate.get_rate()
await pump.infusion_rate.set_rate(2 * rate)
await pump.infusion_rate.set_ramp(2 * rate, 0, 10)
Pump.syringe
The syringe parameters can be controlled here. The pump uses them to convert between flow rates and volumes.
Important methods:
get_diameterandset_diameterget_volumeandset_volumeset_manufacturer- to use pre-defined settings for common syringes
Example:
from syringe_pump import Manufacturer
await pump.syringe.set_manufacturer(Manufacturer.HOSHI, Quantity("1 ml"))
Examples
See the examples folder for more examples.
Pump.infusion_volume and Pump.withdrawal_volume
Allows you to inspect and reset the volume dispensed by the pump. The pump keeps track of the volume since last reset by itself.
Methods:
getclear
Pump.target_volume
Allows you to set a volume after which the pump will stop by itself. This is useful to prevent the pump from over-dispensing and damaging the syringe.
Methods:
setclearget- returns the target volume orNoneif not set
Note that there is only one target volume across infusion and withdrawal. Negative values are not allowed.
Pump.target_time
Allows you to set a time after which the pump will stop by itself.
The time is represented as a datetime.timedelta object.
Methods:
setclearget- returns the target time orNoneif not set
Example:
from datetime import timedelta
await pump.target_time.set(timedelta(hours=2, minutes=10))
Note: it seems the pumpt can only handle target time or target volume, but not both.
Development
Have a look at CONTRIBUTING.md for more information on the scope of the project and how to contribute.
Credits
Project logo: Freepik @ Flaticon.com
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_syringe_pump-0.2.1.tar.gz.
File metadata
- Download URL: python_syringe_pump-0.2.1.tar.gz
- Upload date:
- Size: 24.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e9602f509da1d9f6bee5bcec6fec38eba7a5421468a60153f7e701b3ceb55dc3
|
|
| MD5 |
17a489885fd715a3ba242590d9009df2
|
|
| BLAKE2b-256 |
efb90832b6b59b3baefe49874c544c5ea68ad161caeb92afc5bc3feabeb22c3f
|
File details
Details for the file python_syringe_pump-0.2.1-py3-none-any.whl.
File metadata
- Download URL: python_syringe_pump-0.2.1-py3-none-any.whl
- Upload date:
- Size: 25.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.6.1 CPython/3.10.12 Linux/6.2.0-1012-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
58241329487659a64a38edc51f2401f9684debdbd3134689856eee3c170f403c
|
|
| MD5 |
5c14f5a29d4e872262c9133a708d0fab
|
|
| BLAKE2b-256 |
c52c0d95fee445d306a4b8bf12faf95bb4eaefe254e48f96d3490acb263f8170
|