Skip to main content

Digital Multimeter provides both a CLI interface and a Python3 library interface to receive data from a variety of digital multimeters.

Project description

Digital Multimeter

PyPi Python Versions Build Status Read the Docs PyPI license

Digital Multimeter provides both a command-line interface and a Python module interface to receive data from a variety of digital multimeters. Checkout the list of supported multimeters.

Features

  • Command line and Python module interface to digital multimeters
  • Continuous live data readings (using --count 0)
  • Output in json or csv formats
  • Output to console or file, allowing other tools to pickup and use the data
  • Configuration via config-file or environment-variables
  • Easy to expand for new digital-multimeter protocols
  • Easy installation using PyPI pip
  • Plenty of documentation and examples - https://digital-multimeter.readthedocs.io

Installation

user@computer:~$ pip3 install digital-multimeter

Command Line Usage

Continuously read the digital-multimeter and pipe the JSON output through jq making it look prettier.

user@computer:~$ dmm read --connect /dev/ttyUSB0 --count 0 | jq .
{
  "reading": {
    "value": 156.70000000000002,
    "unit_name": "volts",
    "unit_symbol": "V",
    "scale": 0.001,
    "scale_name": "milli",
    "scale_symbol": "m",
    "scaled_value": 0.15670000000000003,
    "is_relative": false
  },
  "instrument": {
    "module": "MultimeterDigitechQM1538",
    "operation_mode": "voltage_dc",
    "low_battery": false,
    "is_hold": false
  },
  "time": {
    "elapsed": 0.349347334,
    "interval": 0.349347334,
    "timestamp": 1605936374.7694516,
    "unit_name": "second",
    "unit_symbol": "s"
  }
}

Plenty more command-line examples available here.

Python Module Usage

Python-module documentation is available here.

Project


Copyright © 2020 Nicholas de Jong

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

digital-multimeter-0.3.1.tar.gz (12.1 kB view hashes)

Uploaded Source

Built Distribution

digital_multimeter-0.3.1-py3-none-any.whl (14.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page