Home Assistant Air Quality Sensor with the #Adafruit #MetroM0 and #CircuitPython

circuitpython board with an PMS5003 air quality sensor, powered over serial (USB) and using Home Assistant

An interesting project via Robin on GitHub:

This project demonstrates a circuitpython board with an PMS5003 air quality sensor, powered over serial (USB) and using Home Assistant to process the data using. Note that Home Assistant is merely a consumer of the sensor data, and alternatively the data could be plotted in a Jupyter notebook, as here.

I am running Home Assistant on a Raspberry Pi, and whilst the sensors could be connected directly to this Pi, having them on a separate board allows me to quickly plug the board into my laptop, iterate the hardware/code, and keep data parsing logic in Python on the board. In Home Assistant, I simply need to add or remove variables being parsed from a json string, and don’t need to worry about parsing data using YAML. I previously used this approach with a BBC microbit here.

The project uses the Adafruit Metro M0 Express. This board has sufficient memory that the entire Circuitpython Bundle library can be loaded. The board has both 3.3 and 5V output, and all the connections are clearly labelled. The board shows up as an external USB drive, making it straightforward to update the code on the board.

HASS-circuitpython-air-quality-sensor-node

See the full write-up on GitHub and a presentation of the work here,