Understanding Air Filter Types
HEPA (High-Efficiency Particulate Air): Captures particles ≥0.3 µm according to grade (H11=95%, H13=99.95%, H14=99.995%). Suited for PM2.5, pathogens, and allergens. Limitation: HEPA does not filter gases or VOCs — must be paired with a carbon filter.
Carbon / Activated Carbon Filter: Adsorbs gas molecules — VOCs, cigarette smoke, odours, formaldehyde, benzene. Limitation: carbon saturates when fully loaded and must be replaced on schedule, not by colour.
Pre-filter (mesh or foam): Catches coarse dust >10 µm before it reaches the HEPA, extending HEPA life 30–50%. Washable with water every 2–4 weeks.
UV-C Steriliser: Kills pathogens and mould spores at 254 nm. Caution: some UV-C units produce ozone. Choose Far-UVC at 222 nm for safer operation.
Electrostatic Precipitator (ESP): Captures dust electrostatically — washable, no filter replacement cost. Some models produce elevated ozone; not recommended for homes with children or elderly residents.
Smart Ventilation for Thailand’s Climate
Thailand presents a specific challenge: 70–95% RH year-round means conventional ventilation draws humid air in with fresh air, forcing the AC to work harder. The solution is an Energy Recovery Ventilator (ERV).
ERV: Exchanges both heat and moisture between incoming and outgoing air streams. Ideal for Thailand — reduces both heat load and humidity from outdoor air. Recommended models: Mitsubishi Lossnay LGH-15RX5-E, Daikin VAM-FA.
HRV: Exchanges heat only — no moisture transfer. Better suited to cold climates; not recommended for Thailand.
Smart Ventilation Control via Home Assistant
Connect an ERV to HA via Modbus, RS-485, or a brand-specific integration and control it based on:
CO2 level: Activate ERV when CO2 exceeds 800 ppm; deactivate below 600 ppm.
Outdoor AQI: Disable ERV and switch to air purifier when outdoor AQI >100 (data from Air4Thai API or AQI.in.th).
Humidity differential: Run ERV only when outdoor humidity is more than 5% lower than indoor humidity — preventing moisture ingress.
yaml
alias: "Smart ERV CO2 Control"
trigger:
- platform: numeric_state
entity_id: sensor.living_room_co2
above: 800
condition:
- condition: numeric_state
entity_id: sensor.outdoor_aqi
below: 100
action:
- service: fan.turn_on
target:
entity_id: fan.erv_ventilator
- service: fan.set_percentage
target:
entity_id: fan.erv_ventilator
data:
percentage: 50
Selecting Filters for Each Situation
Home near a busy road or factory: Priority — HEPA H13 > Carbon > Pre-filter. Double the CADR rating to compensate for higher baseline pollution.
Home with pets: Change pre-filter every 2 weeks, add carbon filter for odour control, use HEPA H13 for pet dander.
Home with allergy or asthma sufferers: HEPA H13 minimum; consider H14 for bedrooms. Replace every 6 months.
Home with frequent high-heat cooking: Prioritise carbon filter and a high-performance kitchen hood.
Filter Life and Replacement Schedule
Filter life depends on local air quality, not just elapsed time. During Bangkok’s haze season (January–March), double the inspection frequency. General guidance: pre-filter wash/replace every 2–4 weeks; HEPA replace every 6–12 months; carbon replace every 3–6 months; UV-C lamp replace every 12–18 months. A smart home tracks cumulative run hours and sends replacement alerts automatically.
