A Python package to interface with a Keithley 2700 multimeter
Project description
Unofficial Keithley 2700 Series DMM Interface: py2700
A Python package to interface with a Keithley 2700 digital multimeter.
Introduction
The py2700 package is designed to allow for easy access to common SCPI commands sent to the multimeter. From setting up channels, to reading data, to even writing to the display, the package allows the user to quickly and easily produce working, readable Python code to collect data from their device, and ultimately avoid being forced to pay for a license for Keithley Kickstart.
Documentation is available at: https://www.noahpaladino.com/py2700/
Example Program
import py2700 as DMM
import time
# Connect to a Keithley 2701 over TCP/IP
my_multimeter = DMM.Multimeter('TCPIP::192.168.69.102::1394::SOCKET')
# Set the default temperature units
my_multimeter.set_temperature_units('C')
# Set the timeout in ms
my_multimeter.set_timeout(5000)
# Set Channels 101, 102, and 103 as K-type thermocouples
my_multimeter.define_channels([101,102,103],
DMM.MeasurementType.thermocouple('K'))
# Setup for reading:
# This needs to be completed after channel
# definitions and before scanning
my_multimeter.setup_scan()
# Scan the channels, given the timestamp you want
# for the reading
result = my_multimeter.scan(time.time_ns()/(10**9))
# Print out a CSV header for the result
print(my_multimeter.make_csv_header())
# Print out a CSV row for the result
print(result.make_csv_row())
# Safely disconnect from the multimeter
my_multimeter.disconnect()
Contact
Please submit an issue if you encounter a bug and please email any questions or requests to py2700@noahpaladino.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 py2700-0.1.0.tar.gz.
File metadata
- Download URL: py2700-0.1.0.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
98dea6e96d74bd9ae9068137b1935207b61a491efb1fb5ca54d96d2dda9d6e77
|
|
| MD5 |
682ce93478dd4b274b696448960f5c6d
|
|
| BLAKE2b-256 |
5da4aa1e5d82c21a08609e322ac3a1f4134743f67bd3ca0d4f0e29ea256eeef8
|
File details
Details for the file py2700-0.1.0-py3-none-any.whl.
File metadata
- Download URL: py2700-0.1.0-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.2.0.post20200210 requests-toolbelt/0.9.1 tqdm/4.42.1 CPython/3.7.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
01c17f91c572b25a90d906c4c57dfd5919cd677edff5b4df70ca5d72dac6de82
|
|
| MD5 |
62698662daac058445e95b42d9d5795e
|
|
| BLAKE2b-256 |
b192e5a796797cae07c3ce4fb97c9edfd833ece1d73a4dbc19f37f8edeb97ed1
|