Bangkok’s PM2.5 Reality
According to the Pollution Control Department’s Air4Thai platform, Bangkok exceeds the WHO PM2.5 standard (15 µg/m³) on more than 100 days per year. The critical window is January–March, when AQI regularly hits orange-to-red levels. At 2.5 microns, these particles penetrate alveoli and the bloodstream, linking to COPD, lung cancer, and heart disease over time.
The 3-Layer Safe Zone Architecture
A smart home that genuinely combats PM2.5 needs all three layers active simultaneously:
Layer 1: Prevent entry → Door/window sealing + positive pressure
Layer 2: Filter → HEPA H13/H14 + activated carbon
Layer 3: Monitor & alert → PM2.5 sensor + AI automation + LINE alert
PM2.5 and CO2 Sensor Selection
Recommended sensors for Thailand:
| Model | PM2.5 | CO2 | Price | HA Compatible |
|---|---|---|---|---|
| Aqara Air Quality Monitor | ✓ | ✓ (TVOC) | ~THB 2,500 | ✓ Zigbee |
| SDS011 + MHZ-19C (DIY) | ✓ | ✓ | ~THB 900 | ✓ ESPHome |
| PurpleAir Flex | ✓ | – | ~THB 5,000 | ✓ API |
Automation thresholds:
- PM2.5 > 25 µg/m³ → activate purifier Speed 2
- PM2.5 > 50 µg/m³ → Speed Max + close fresh air damper
- PM2.5 > 75 µg/m³ → LINE alert + recommend N95 indoors
Home Assistant Automation: PM2.5 Safe Zone
yaml
alias: PM2.5 Safe Zone — Auto Response
trigger:
- platform: numeric_state
entity_id: sensor.pm25_living_room
above: 25
action:
- choose:
- conditions:
- condition: numeric_state
entity_id: sensor.pm25_living_room
above: 75
sequence:
- service: fan.set_percentage
target:
entity_id: fan.air_purifier_living
data:
percentage: 100
- service: cover.close_cover
target:
entity_id: cover.fresh_air_damper
- service: notify.line_notify
data:
message: >-
🚨 PM2.5 Critical: {{ states('sensor.pm25_living_room') }} µg/m³
Purifier at Max + fresh air damper closed
- conditions:
- condition: numeric_state
entity_id: sensor.pm25_living_room
above: 25
sequence:
- service: fan.set_percentage
target:
entity_id: fan.air_purifier_living
data:
percentage: 50
HRV/ERV: Ventilation Without Importing Dust
Heat Recovery Ventilation (HRV) and Energy Recovery Ventilation (ERV) exhaust stale CO2-laden air while drawing in fresh air — with a filter catching PM2.5 before it enters. Thailand options:
- Daikin VRV-HRV: THB 40,000–80,000, suitable for 200+ sqm homes
- Mitsubishi Lossnay: THB 25,000–60,000, ideal for 1–3 bedroom condos
- DIY ESPHome: DC fan + HEPA filter box, ~THB 5,000
When CO2 exceeds 800 ppm, HRV should activate automatically to prevent stale-air accumulation.
Measurable Results
Bangkok homes with HEPA H13 + HRV + HA automation report:
- Indoor PM2.5 drops from outdoor 60+ µg/m³ to below 10 µg/m³
- CO2 stabilizes at 600–800 ppm (vs. 1,200–2,000 ppm without ERV)
- Electricity cost increases ~15–20%, but measurable health benefits far outweigh the expense
Summary
A smart home that genuinely solves Bangkok’s PM2.5 problem combines all three layers — prevent, filter, monitor — automated through Home Assistant to run as a 24/7 Safe Zone throughout the haze season.
