Documentation
BME680 Sensor (Pi)
Read pressure, humidity, temperature, and gas resistance from the BME680 environmental sensor over I2C.
Overview
Weather conditions can be very useful for monitoring your garden health. Pressure, humidity, and temperature can be important for a number of applications such as regulating environmental controls. Using a commercially available BME680 you can take a digital read of these conditions over I2C.
Note
The core can be expanded to support sensors of other models as well.
Configuration
JSON
{
"sensors": [
{
"type": "Bme680",
"name": "Weather Station"
}
]
}
Settings
| Property | Value | Description |
|---|---|---|
type |
Bme680 |
Sensor type identifier |
Returns
Object — Contains environmental readings:
Response
{
"humidity": 45.3,
"temperature": 71.8,
"pressure": 1013.25,
"gas": 12345.6
}