2021-08-31 04:02:10 +02:00
AirThings BLE Sensors
2022-04-03 09:30:25 +02:00
=====================
2021-08-31 04:02:10 +02:00
.. seo ::
:description: Instructions for setting up AirThings bluetooth-based sensors in ESPHome.
2021-10-05 00:56:37 +02:00
:keywords: AirThings, BLE, Bluetooth, Wave Plus, Wave Mini
2021-08-31 04:02:10 +02:00
2021-10-05 00:56:37 +02:00
The `` airthings_wave_plus `` and `` airthings_wave_mini `` sensor platforms lets you track the output of AirThings Bluetooth Low Energy devices.
2021-08-31 04:02:10 +02:00
This component will track radon, airborne chemicals, CO2, temperature and humidity and others depending on the device sensors.
Device Discovery
-----------------
AirThings devices can be found using the `` airthings_ble `` ble scanner.
To find out your device's MAC address, add the following to your ESPHome configuration:
.. code-block :: yaml
logger:
level: DEBUG # Required for the tracker to show the device
esp32_ble_tracker:
airthings_ble:
The device will then listen for nearby devices, and display a message like this one:
2021-10-06 04:59:46 +02:00
.. code-block :: text
2021-08-31 04:02:10 +02:00
2022-04-03 09:30:25 +02:00
[D][airthings_ble:019]:
2021-10-06 04:59:46 +02:00
Found AirThings device Serial: 123456789 (MAC: 01:02:03:04:05:06)
Once the device is found, remove the `` airthings_ble `` device tracker from your configuration and take note of the device MAC address, and use it when configuring a sensor below.
2021-08-31 04:02:10 +02:00
Supported Devices
-----------------
2022-04-03 09:30:25 +02:00
Airthings Wave Plus Sensor
***** ***** ***** ***** ***** *
2021-08-31 04:02:10 +02:00
AirThings Wave Plus tracks radon (24h and long term), airborne chemicals, CO2, temperature, atmospheric pressure and humidity.
.. figure :: images/airthings_wave_plus.jpg
:align: center
:width: 60.0%
Configuration example:
2021-10-06 04:59:46 +02:00
***** ***** ***** ***** **
2021-08-31 04:02:10 +02:00
.. code-block :: yaml
sensor:
- platform: airthings_wave_plus
ble_client_id: airthings01
update_interval: 5min # default
temperature:
name: "WavePlus Temperature"
radon:
name: "WavePlus Radon"
radon_long_term:
name: "WavePlus Radon Long Term"
pressure:
name: "WavePlus Pressure"
humidity:
name: "WavePlus Humidity"
co2:
name: "WavePlus CO2"
tvoc:
name: "WavePlus VOC"
ble_client:
- mac_address: 01:02:03:04:05:06
id: airthings01
esp32_ble_tracker:
2022-04-03 09:30:25 +02:00
Airthings Wave Mini Sensor
***** ***** ***** ***** ***** *
2021-10-05 00:56:37 +02:00
AirThings Wave Mini tracks airborne chemicals, temperature, pressure and humidity.
.. figure :: images/airthings_wave_mini.jpg
:align: center
:width: 60.0%
Configuration example:
.. code-block :: yaml
sensor:
- platform: airthings_wave_mini
ble_client_id: airthingsmini
update_interval: 5min # default
temperature:
name: "WaveMini Temperature"
pressure:
name: "WaveMini Pressure"
humidity:
name: "WaveMini Humidity"
tvoc:
name: "WaveMini VOC"
ble_client:
- mac_address: 01:02:03:04:05:06
id: airthingsmini
esp32_ble_tracker:
2021-08-31 04:02:10 +02:00
.. note ::
The sensor uses active polling of devices every 5 minutes as per the device reported internal refresh timeout.