Franck Nijhof 1833c32a2c Cleans up front matter (#9835)
* Sets front matter defaults

* Removes default front matter from section templates/pages

* Removes default front matter from addon pages

* Removes default front matter from integration pages

* Removes default front matter from posts

* Removes default front matter from docs pages

* Removes default front matter from other pages

* Fixes blog category pages
2019-07-11 14:35:08 -07:00

1.8 KiB

title, description, logo, ha_category, ha_release, ha_iot_class, redirect_from
title description logo ha_category ha_release ha_iot_class redirect_from
Awair Air Quality Monitor Instructions on how to setup Awair devices in Home Assistant. awair.jpg
Health
0.84 Cloud Polling
/components/sensor.awair/

The awair sensor platform will fetch data from your Awair device(s).

You will need to request access to the Awair API and obtain an access token from the Awair Developer Console.

Configuring the Platform

To enable these sensors, add the following lines to your configuration.yaml file:

sensor:
  - platform: awair
    access_token: ACCESS_TOKEN

The Awair API has stringent usage quotas. The API method to discover devices in your account is limited to only 6 calls per 24 hours. If you find that you've exceeded this quota, you may optionally append device information to your configuration to bypass this call:

sensor:
  - platform: awair
    access_token: ACCESS_TOKEN
    devices:
      - uuid: UUID

{% configuration %} access_token: description: The access token for the Awair API. required: true type: string devices: description: An optional list to manually configure devices rather than relying upon API discovery. required: false type: list keys: uuid: description: UUID of the Awair sensor to monitor. required: true type: string {% endconfiguration %}

Available Sensors

The platform will fetch all available sensors from each Awair device linked to your account. Supported sensors:

  • Temperature
  • Humidity
  • CO2
  • VOC
  • Dust, PM2.5, PM10: varies according to Awair model

This platform refreshes at an interval based on a 300 API call per-day quota, and the number of devices you have configured.