Python3 AsyncIO HP3478A driver
Project description
hp3478a_async
Python3 AsyncIO HP3478A driver. This library requires Python asyncio and AsyncIO library for the GPIB adapter. It also supports several undocumented functions for reading status registers and reading, modifying and writing the calibration memory.
The library is fully type-hinted.
Supported GPIB Hardware
Device | Supported | Tested | Comments |
---|---|---|---|
AsyncIO Prologix GPIB library | :heavy_check_mark: | :heavy_check_mark: | |
AsyncIO linux-gpib wrapper | :heavy_check_mark: | :heavy_check_mark: |
Tested using Linux, should work for Mac OSX, Windows and any OS with Python support.
Documentation
The full documentation can be found on GitHub Pages: https://patrickbaus.github.io/pyAsyncHP3478A/. I use the Numpydoc style for documentation and Sphinx for compiling it.
Setup
To install the library in a virtual environment (always use venvs with every project):
python3 -m venv env # virtual environment, optional
source env/bin/activate # only if the virtual environment is used
pip install hp3478a-async
All examples assume that a GPIB library is installed as well. Either run
pip install prologix-gpib-async # or alternatively
# pip install async-gpib
Usage
The library uses an asynchronous context manager to make cleanup easier. You can use either the context manager syntax or invoke the calls manually:
async with HP_3478A(connection=gpib_device) as hp3478a:
# Add your code here
...
try:
hp3478a = HP_3478A(connection=gpib_device)
await hp3478a.connect()
# your code
finally:
await hp3478a.disconnect()
A more complete example for reading voltages:
import asyncio
import logging
from hp3478a_async import HP_3478A, FunctionType, TriggerType, Range
from pyAsyncPrologixGpib import AsyncPrologixGpibEthernetController, EosMode
# The default GPIB address is 27. The ip address of the prologix controller needs to be changed.
ip_address = "127.0.0.1"
gpib_device = AsyncPrologixGpibEthernetController(ip_address, pad=27, timeout=1000, eos_mode=EosMode.APPEND_NONE)
async def main():
"""This example will print voltage data to the console"""
try:
# No need to explicitly bring up the GPIB connection. This will be done by the instrument.
async with HP_3478A(connection=gpib_device) as hp3478a:
await asyncio.gather(
hp3478a.set_function(FunctionType.DCV), # Set to 4-wire ohm
hp3478a.set_range(Range.RANGE_30), # Set to 30 kOhm range
hp3478a.set_trigger(TriggerType.INTERNAL), # Enable free running trigger
hp3478a.set_autozero(True), # Enable Autozero
hp3478a.set_number_of_digits(6), # Set the resolution to 5.5 digits
hp3478a.connection.timeout(700), # The maximum reading rate @ 50 Hz line freq. is 1.9 rds/s
)
# Take the measurements until Ctrl+C is pressed
async for result in hp3478a.read_all():
print(result)
except (ConnectionError, ConnectionRefusedError):
logging.getLogger(__name__).error(
"Could not connect to remote target. Connection refused. Is the device connected?"
)
try:
asyncio.run(main(), debug=False)
except KeyboardInterrupt:
# The loop will be canceled on a KeyboardInterrupt by the run() method, we just want to suppress the exception
pass
See examples/ for more working examples.
Unit Tests
There are unit tests available for the calram encoder and decoder.
source env/bin/activate # only if the virtual environment is used
pytest
Thanks
Special thanks goes to fenugrec and Steve Matos for their work on deciphering the calram function.
Versioning
I use SemVer for versioning. For the versions available, see the tags on this repository.
Authors
- Patrick Baus - Initial work - PatrickBaus
License
This project is licensed under the GPL v3 license - see the LICENSE file for details
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
File details
Details for the file hp3478a_async-1.4.5.tar.gz
.
File metadata
- Download URL: hp3478a_async-1.4.5.tar.gz
- Upload date:
- Size: 30.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f2dfa4c79cbc6247279476e54a717a2b6c4146a32a1b7ba9db2665d3e32113a2 |
|
MD5 | 91134cef5364ef8e722763af969b96df |
|
BLAKE2b-256 | df9ff353ec83e014206de528f703c2cdb3a74c4907bfa596570724999cbc6462 |
File details
Details for the file hp3478a_async-1.4.5-py3-none-any.whl
.
File metadata
- Download URL: hp3478a_async-1.4.5-py3-none-any.whl
- Upload date:
- Size: 28.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b22390d8cfb79c3d6a9c4ee1a428049691e14ec876b74ffd6d7310472c81b16 |
|
MD5 | e1add26e6d27f7ae35245a946a2abca2 |
|
BLAKE2b-256 | ac6aec3236355ab870ff6ba0033c0075407f3193f56e57360cd9f0ae7e7fd00e |