Skip to content

Integration of BME680 Sensor (#33)

chris007 requested to merge chris007/firmware:bme680 into master

Integrated the BME680 Sensor as Python module.

Performs a single read of temperature (°C), humidity (% r.h.), air pressure (hPa) and gas resistance (Ohm):

>>> import bme680
>>> bme680.get_bme_data()
(27.84, 28.452, 1022.72, 29021.0)

Merge request reports