Skip to main content

Python async library to interface with the MH-Z19* sensors for CO2.

Project description

mhz19_async

Python library for communicating with the MH-Z19x sensors for CO2 with asyncio.

This sensor is very badly documented and there are conflicting reports on its working. To make things worse, several hardware versions exist (including knockoffs), and there are also different firmware versions. Testing was done on an MH-Z19B sensor (green PCB) that reports firmware version 0502. Only the commands that I could test and verify personally are implemented. Several other commands were tried (including the unlimited/raw CO2 readings, "background" and calibration data readings), but results are inconsistent with docs or other implementations, and they are left out for now.

Here is a list of references used to implement the protocol:

Please note that it is unclear whether you can "brick" the sensor, or whether you can fix calibration values once they are messed up.

Features

This library provides

  • a class MHZ19Protocol(asyncio.Protocol) to speak the protocol of the sensor
  • an executable that reads commands and prints results in json format.

Implemented commands documented in source, as well as response parsing.

__main__.py is your reference for using the library, it is very simple.

Contrary to most implementations, this library makes no attempt to match input commands to responses from the sensor. This is because the input and output dataframes do not have identifiers that allow a reliable match between requests and responses. The intended use case is to send periodically CO2 read requests, in order to get readings at a user-defined time interval.

Command line operation with json

The module can be run as an executable. It reads commands from stdin and prints data from the sensor, one json per line.

export DEVICE=/dev/ttyUSB0
python -m mhz19_async "${DEVICE}"
# pipe commands to stdin, receive outputs in stdout

Input json fields:

  • command (required): enum name of the command, or raw int
  • args: scalar or list of scalars (depends on command)
  • raw_args: list of 5 byte arguments to be appended as-is to the command (for debugging and hacking).

Output json fields:

  • command: enum name of the received command, or raw int if not recognized
  • raw: raw hex string of incoming arguments (6 bytes)
  • if parsing is implemented, fields are extracted from the raw data and made available in additional fields
  • error: error message generated during parsing.

Protocol examples (input json followed by output json):

{"command": "GET_CLAMPED_CO2_TEMPERATURE"}
{"command": "GET_CLAMPED_CO2_TEMPERATURE", "raw": "03553B000000", "CO2": 853, "temperature": 19}

{"command": "SET_ABC", "args": false}
{"command": "SET_ABC", "raw": "010000000000", "ack": true}

{"command": "GET_FIRMWARE_VERSION"}
{"command": "GET_FIRMWARE_VERSION", "raw": "303530320000", "version": "0502"}

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

pymhz19_async-0.1.0.tar.gz (7.0 kB view details)

Uploaded Source

Built Distribution

pymhz19_async-0.1.0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file pymhz19_async-0.1.0.tar.gz.

File metadata

  • Download URL: pymhz19_async-0.1.0.tar.gz
  • Upload date:
  • Size: 7.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.1

File hashes

Hashes for pymhz19_async-0.1.0.tar.gz
Algorithm Hash digest
SHA256 63475a547cfd89f22ec1f25186ce167073f74807e141541b2e771078a97f8cb7
MD5 2d62169b59a7b7abc01f9ae030366f47
BLAKE2b-256 4529deabc0631b046a59bc02dca0e7b845d957c33045c178d8e7725bd361f235

See more details on using hashes here.

File details

Details for the file pymhz19_async-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pymhz19_async-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e1a9f31d3a43bfbbac0e176e4993bd5e46f1d4e61d8f259145b72eccbe512058
MD5 1ba39784ff43dd7dafd601acad9b426e
BLAKE2b-256 1376a95b3f2493008c20d7784396b817eaf82f47c15714f0a618671b670ffaf1

See more details on using hashes here.

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