Last updated: May 2, 2026

Sensors are the input layer of any home automation system. Without reliable sensing, automations operate on schedules and guesswork rather than on what is actually happening in the space. The difference between a house that turns lights off because someone left the room and one that leaves them on until a timer fires is entirely determined by whether a motion sensor is present and placed correctly.

For Polish households, three sensor categories produce disproportionate utility relative to their cost: motion and presence detection, temperature and humidity, and air quality. Each solves a different set of automation problems and integrates differently with the major open-source platforms.

Motion and presence sensors

PIR (passive infrared) sensors detect changes in infrared radiation caused by movement — specifically the kind of movement produced by a warm human body crossing the sensor's field of view. They are fast, reliable, inexpensive, and widely available. The Aqara Motion Sensor P1 and the IKEA TRÅDFRI motion sensor are the most commonly found in Polish retail; the Aqara runs Zigbee and reports motion, illuminance, and optional temperature depending on the model.

The core limitation of PIR is that it detects motion, not presence. A person sitting still reading will not trigger a PIR after the first detection. Automations that need to know whether a room is occupied (not just recently visited) require either a very short re-arm delay with a long no-motion timeout, or a different sensor technology.

mmWave presence sensors

Millimetre-wave (mmWave) radar sensors — the Aqara FP2 and the Tuya-based LD2410 module being the most referenced in Home Assistant documentation — detect micro-movements: breathing, a raised hand, even the chest movement of a sleeping person. They maintain presence detection for as long as a person is in the space regardless of movement level.

The LD2410 is available on Allegro for under 50 PLN and connects over USB-C or UART. When integrated into an ESP32-based sensor board flashed with ESPHome, it becomes a full Wi-Fi presence sensor that Home Assistant picks up automatically via the ESPHome discovery protocol.

For lighting automations in living rooms and offices, the combination of a PIR sensor (for fast initial detection) and a mmWave sensor (for sustained presence) covers both the entry and occupancy scenarios without false-off events.

Temperature and humidity sensors

Temperature and humidity sensing is relevant in Polish households for three distinct reasons: heating efficiency (heating a room when no one is there is the most common source of smart home energy savings), condensation prevention (a humidity sensor near exterior walls or in bathrooms detects conditions that lead to mould before visible damage occurs), and occupant comfort thresholds that trigger ventilation or fan automations.

Zigbee temperature sensors

The Xiaomi LYWSD03MMC (available on Allegro for 20–35 PLN per unit) is a Bluetooth temperature and humidity sensor that can be flashed with custom firmware (ATC_MiThermometer) to broadcast BLE advertisements readable without pairing. Home Assistant picks these up via a Bluetooth proxy running on an ESP32. For Zigbee alternatives, the Aqara Temperature and Humidity Sensor (WSDCGQ11LM) is widely stocked in Polish smart home sections of electronics retailers.

Sonoff SNZB-02D, a Zigbee sensor with an e-ink display, is useful in rooms where the occupant also wants a physical readout without an additional thermometer. Battery life on typical Zigbee temperature sensors runs 12–24 months on CR2032 or AA cells depending on reporting frequency.

Smart home electrical panel with automation modules and sensor connections
A smart home electrical panel showing automation modules integrated at the distribution level. Image: Wikimedia Commons (CC0).

Air quality sensors

Air quality monitoring in residential settings typically covers three measurement categories that are practically distinct: CO₂ concentration, fine particulate matter (PM2.5 and PM10), and VOCs (volatile organic compounds).

CO₂ monitoring

CO₂ concentration above 1,000 ppm in a room correlates with reduced cognitive performance and increased fatigue in occupants. In Polish apartment buildings with limited natural ventilation during winter months, CO₂ in bedrooms and living rooms routinely exceeds this threshold with two or more occupants present for an extended period.

The NDIR (non-dispersive infrared) sensor is the reference technology for accurate CO₂ measurement. Devices based on NDIR include the Aranet4, a standalone CO₂ monitor that also exports data to Home Assistant via Bluetooth, and the SCD40/SCD41 sensor chip (available as a standalone module for embedding in custom ESPHome builds). NDIR sensors are substantially more accurate than the electrochemical eCO₂ proxies used in cheaper units, which measure VOCs and estimate CO₂ rather than measuring it directly.

PM2.5 and outdoor-indoor particle transfer

Polish cities — particularly in the Małopolska and Silesia regions — rank among the highest in the EU for residential solid fuel burning and associated PM2.5 concentrations in winter. A particle sensor placed near an air intake or a window that opens during heating season provides accurate data on when outdoor air quality makes natural ventilation inadvisable.

The IKEA VINDSTYRKA is a Wi-Fi sensor (works with Home Assistant via local MQTT) with PM2.5 measurement, humidity, temperature, and a qualitative VOC index. It retails at approximately 249 PLN in IKEA Poland stores. For finer granularity, the PMS5003 sensor chip integrated into an ESPHome board provides PM1.0, PM2.5, and PM10 readings with higher update frequency.

Sensor placement principles

  • Motion sensors: Mount at 1.8–2.1 m height, angled slightly downward, covering room diagonals. Avoid direct sunlight and air conditioning vents — both cause false positives on PIR.
  • Temperature sensors: Place at breathing height (1.2–1.5 m), away from exterior walls and heat sources. A sensor near the floor reads 2–4°C lower than ceiling height in winter.
  • CO₂ and air quality: Central room position at table height. Avoid placement directly next to ventilation inlets — the reading will underestimate zone concentration.
  • Humidity sensors in bathrooms: Mount near the exhaust fan, not directly above the shower. A sustained reading above 75% RH should trigger automation for fan operation or an alert.

Integration with Home Assistant

Home Assistant's sensor integration layer handles Zigbee (via Zigbee2MQTT or ZHA integration), Bluetooth (via active Bluetooth integration and optional ESP32 proxies for range extension), ESPHome devices over Wi-Fi, and direct MQTT topics. Sensor history is stored in the local database (SQLite by default, optionally InfluxDB for longer retention and Grafana visualisation).

The Home Assistant integrations directory lists all supported devices by manufacturer. Before purchasing any sensor, checking the integration page for known limitations — particularly around unavailable attributes or cloud-only control — avoids compatibility surprises.

Device prices and availability reflect Polish retail conditions as of May 2026. Sensor accuracy specifications are drawn from manufacturer datasheets. VexVexVo has no commercial relationship with any manufacturer mentioned.

For the wireless protocols these sensors use to communicate, see Zigbee, Z-Wave, and Matter — Which Protocol Fits Your Setup?. For information on which hub platform aggregates them most effectively, read How to Choose a Smart Home Hub in 2026.