Data acquisition and logging for Air Quality Sensors with UART interface
This package can be pip installed. Please visit project site for detailed instructions.
This package provides tools for requesting new measurements from the sensors and print them on different formats, save them to a CSV file, or push them to an external service such as an MQTT or InfluxDB server. MQTT or InfluxDB server support requires additional packages. Please visit project site for details.
Sensor | --sensor-model |
PM1 | PM2.5 | PM4 | PM10 | size bins | Other | Tested |
---|---|---|---|---|---|---|---|---|
Plantower | ||||||||
PMS1003 (aka G1) | PMSx003 | ✔️ | ✔️ | ✔️ | 6 | |||
PMS3003 (aka G3) | PMS3003 | ✔️ | ✔️ | ✔️ | ✔️ | |||
PMS5003 (aka G5) | PMSx003 | ✔️ | ✔️ | ✔️ | 6 | |||
PMS5003T | PMS5003T | ✔️ | ✔️ | ✔️ | 4 | temp. & rel.hum. | ✔️ | |
PMS5003S | PMS5003S | ✔️ | ✔️ | ✔️ | 6 | HCHO concentration | ||
PMS5003ST | PMS5003ST | ✔️ | ✔️ | ✔️ | 6 | HCHO, temp. & rel.hum. | ||
PMS7003 (aka G7) | PMSx003 | ✔️ | ✔️ | ✔️ | 6 | ✔️ | ||
PMSA003 (aka G10) | PMSx003 | ✔️ | ✔️ | ✔️ | 6 | ✔️ | ||
NovaFitness | ||||||||
SDS011 | SDS01x | ✔️ | ✔️ | ✔️ | ||||
SDS018 | SDS01x | ✔️ | ✔️ | |||||
SDS021 | SDS01x | ✔️ | ✔️ | |||||
SDS198 | SDS198 | PM100 | ✔️ | |||||
Honeywell | ||||||||
HPMA115S0 | HPMA115S0 | ✔️ | ✔️ | |||||
HPMA115C0 | HPMA115C0 | ✔️ | ✔️ | ✔️ | ✔️ | ✔️ | ||
Sensirion | ||||||||
SPS30 | SPS30 | ✔️ | ✔️ | ✔️ | ✔️ | 5 | typical particle size | ✔️ |
Winsen | ||||||||
ZH03B | ZH0xx | ✔️ | ✔️ | ✔️ | ||||
ZH06-I | ZH0xx | ✔️ | ✔️ | ✔️ |
- MCU680: chinese module with a BME680 sensor, a mirocontroller (μC) and 3.3V low-dropout regulator (LDO). The μC acts as I2C/UART bridge, providing outputs from the closed source integration library.
- MHZ19B: infrared CO2 sensor module from Winsen.
For more Air Quality sensors open an issue.
PyPMS/pms is meant as a command line application. The project site contain some help for those brave enough to use its internals as a library.
- 0.7.1
- disable logging unless CLI is running PR#37
- 0.7.0
- 0.6.2
- move logger config to CLI module PR#28
- 0.6.1
- fix
pms.sensors.sensirion
module name and docs - reliably recognize SPS30 sensor #25
- fix
- 0.6.0
- project site
- reorganize internal modules
pms.core
: core functionality, such asSensor
andSensorReader
pms.sensors
: sensor modules grouped by manufacturerpms.extra
: extra cli utilities, such aspms influxdb
andinfluxdb mqtt
- importing from
pms.sensor
is deprecated, import frompms.core
instead
- plugin architecture
- load sensor modules from entry points advertized as
"pypms.sensors"
- load extra cli commands from entry points advertized as
"pypms.extras"
- load sensor modules from entry points advertized as
- support Winsen PM sensors and MHZ19B infrared CO2 sensor.
- pm1/pm4/raw2_5/pm2_5 properties, #17
- 0.5.0
- set username/password with environment variables:
$MQTT_USER
sets--mqtt-user
onpms mqtt
andpms bridge
$MQTT_USER
sets--mqtt-user
onpms mqtt
andpms bridge
$DB_USER
sets--db-user
onpms influxdb
andpms bridge
$DB_PASS
sets--db-pass
onpms influxdb
andpms bridge
- set username/password with environment variables:
- 0.4.1
- 0.4.0
- capture raw messages with
pms csv --capture
- decode captured messages with
pms serial --capture
- hexdump format with
pms serial --format hexdump
- deprecate subset observation method
- capture raw messages with
- 0.3.1
- fix influxdb default tags
- 0.3.0
- option for a fix number of samples
- PMSx003 consistency check after sleep/wake
- 0.2.*
- 0.1.*
- widen project scope beyond Plantower PM sensors
- support NovaFitness, Honeywell and Sensirion PM sensors
- cli for logging to csv file, InfluxDB server or MQTT server