Zyno Medical Unified Driver: Control your infusion pump with Python
Zyno Medical Unified Driver is a Python package that enables you to control Zyno Medical infusion pumps with RS232 interface. As an example, reading self-identification from a MIVA pump is as easy as three lines of Python code:
from pyZynoUnifiedDrivers import visa
rm = visa.ResourceManager()
print(rm.list_resources())
miva = rm.open_resource('COM5')
print(miva.query("*IDN?"))
(That’s the whole program; really!) It works on Windows; with a USB cable (e.g. Amazon Basics USB 2.0 A-Male to Micro B Cable).
General overview
The programming of Zyno Medical Infusion Pumps can be real pain. There are many different protocols, sent over many different interfaces and bus systems (e.g. RS232, USB, Ethernet). For every programming language you want to use, you have to find libraries that support both your device and its bus system.
In order to ease this unfortunate situation, Zyno Medical Unified Driver was created for configuring programming, and troubleshooting infusion pumps comprising Serial, Ethernet, and/or USB interfaces. This driver is following the design pattern of the pyVISA library API.
Application Code Example
from pyZynoUnifiedDrivers import visa
rm = visa.ResourceManager()
print(rm.list_resources())
miva = rm.open_resource('com5')
# Test [query] Function
pump_sn = miva.query(':serial?')
print(pump_sn)
# Test [write] Function
miva.write(':serial?')
# Test [read] Function
pump_sn = miva.read()
print(pump_sn)
# Test [*idn] query
pump_identifier = miva.query('*idn?')
print(pump_identifier)
# Test [close] function of miva class
miva.close()
# Test [list_resources] Function
resources = rm.list_resources()
print(resources)
Release files for pyZynoUnifiedDrivers 0.0.9
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pyZynoUnifiedDrivers-0.0.9.tar.gz | 159.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| pyZynoUnifiedDrivers-0.0.9-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 326.0 kB
Release files / pyZynoUnifiedDrivers-0.0.9.tar.gz
| Download URL | pyZynoUnifiedDrivers-0.0.9.tar.gz |
|---|---|
| Size | 159.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
fc9d73294291db0373e3b77150e7db6beb03a2a059f00f520de52e03c3ebec52
|
|
BLAKE2b-256 checksum How to use checksums |
0b7b9168ace913da97d9091f7a817f616655a28ac2ee882bedfd583d67530979
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.10
|
Release files / pyZynoUnifiedDrivers-0.0.9-py3-none-any.whl
| Download URL | pyZynoUnifiedDrivers-0.0.9-py3-none-any.whl |
|---|---|
| Size | 166.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
048584caa406ec5fd9272270f0dab05107d8a2a08e6cb79edb08efa12d7ae6d4
|
|
BLAKE2b-256 checksum How to use checksums |
b306deb6045ec98d152f7d74cdbf4990d1575bad57d3de05cfda870e8c2f5396
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/4.0.2 CPython/3.8.10
|