September 6, 2024
Description
A simple case for a home air/weather monitor, with mounting points for:
(I'm aware there's some overlap in what those things sense; they're just what I had around and I'm trying to use the function each one is best at).
Mounting holes and case assembly holes are sized for M2 bolts, no threaded inserts needed. The specific SCD40 board I used is a push fit, since it doesn't have mounting holes.
ESPHome Config looks something like this:
i2c:
sda: GPIO4
scl: GPIO0
scan: True
sensor:
- platform: bme280_i2c
temperature:
name: "Temperature (BME)"
id: bme_temperature
pressure:
name: "Pressure (BME)"
id: bme_pressure
humidity:
name: "Humidity (BME)"
id: bme_humidity
address: 0x76
- platform: scd4x
co2:
name: "CO2 (SCD)"
temperature:
name: "Temperature (SCD)"
id: scd_temperature
humidity:
name: "Humidity (SCD)"
id: scd_humidity
ambient_pressure_compensation_source: bme_pressure
- platform: ens160_i2c
eco2:
name: "CO2 Estimate"
tvoc:
name: "Total Volatile Organic Compounds"
aqi:
name: "Air Quality Index"
address: 0x53
compensation:
temperature: scd_temperature
humidity: scd_humidityLicense:
Creative Commons — Attribution
10