mirror of
https://github.com/CeeWeasel/fresh-home.git
synced 2026-08-09 18:40:14 -04:00
61 lines
1.3 KiB
YAML
61 lines
1.3 KiB
YAML
# I2C bus for the BME680 devices
|
|
i2c:
|
|
- id: "i2cbus_bme"
|
|
sda: GPIO18
|
|
scl: GPIO19
|
|
scan: true
|
|
|
|
# BME680 devices using BSEC library
|
|
bme680_bsec:
|
|
- id: bme680_internal
|
|
i2c_id: "i2cbus_bme"
|
|
address: 0x76
|
|
- id: bme680_external
|
|
i2c_id: "i2cbus_bme"
|
|
address: 0x77
|
|
|
|
sensor:
|
|
# Sensors for the internal BME680 device
|
|
- platform: bme680_bsec
|
|
bme680_bsec_id: bme680_internal
|
|
temperature:
|
|
name: "IN_Temp"
|
|
pressure:
|
|
name: "IN_Press"
|
|
humidity:
|
|
name: "IN_RH"
|
|
iaq:
|
|
name: "IN_IAQ"
|
|
co2_equivalent:
|
|
name: "IN_CO2eq"
|
|
breath_voc_equivalent:
|
|
name: "IN_VOCeq"
|
|
|
|
# Sensors for the external BME680 device
|
|
- platform: bme680_bsec
|
|
bme680_bsec_id: bme680_external
|
|
temperature:
|
|
name: "OUT_Temperatura"
|
|
pressure:
|
|
name: "OUT_Pressione"
|
|
humidity:
|
|
name: "OUT_RH"
|
|
iaq:
|
|
name: "OUT_IAQ"
|
|
co2_equivalent:
|
|
name: "OUT_CO2eq"
|
|
breath_voc_equivalent:
|
|
name: "OUT_VOCeq"
|
|
|
|
text_sensor:
|
|
# Text sensor for the internal BME680 device
|
|
- platform: bme680_bsec
|
|
bme680_bsec_id: bme680_internal
|
|
iaq_accuracy:
|
|
name: "IN_IAQaccuracy"
|
|
|
|
# Text sensor for the external BME680 device
|
|
- platform: bme680_bsec
|
|
bme680_bsec_id: bme680_external
|
|
iaq_accuracy:
|
|
name: "OUT_IAQaccuracy" |