Hi there,
I’ve got a Sensor for Air Quality that I built around one year ago, and it used to live in the bathroom, now it’s got a new case and lives outside (sheltered from rain ofc). What’s confusing me is the fact that it shows 700ppm of CO2, when it should be half of that. The PM sensors are also way off, I don’t believe the readings are that high (especially when compared to freely available air data from not that far away). Is the sensor cooked, and I need a new one?
Thank you in advance ![]()
The esphome sketch uses the now native Sen6x profile (copied everything below the usual backup hotspot, etc.
captive_portal:
web_server:
port: 80
fan:
- platform: speed
output: casefan
name: "Case Fan"
speed_count: 100
output:
- platform: ledc
id: casefan
pin: GPIO2 #D1
frequency: "25000 Hz"
min_power: 30%
max_power: 100%
time:
- platform: homeassistant
id: homeassistant_time
timezone: "Europe/Berlin"
i2c:
sda: GPIO5 #D4
scl: GPIO43 #D6
scan: true
id: bus_a
sensor:
- platform: sen6x
type: sen66
id: sen66
pm_1_0:
name: PM <1µm Weight concentration
pm_2_5:
name: PM <2.5µm Weight concentration
pm_4_0:
name: PM <4µm Weight concentration
pm_10_0:
name: PM <10µm Weight concentration
temperature:
name: Temperature
id: sen66_temp
humidity:
name: Humidity
id: sen66_humidity
voc:
name: VOC
nox:
name: NOx
co2:
name: Carbon Dioxide
update_interval: 10s

