home-assistant.io/source/_components/sensor.broadlink.markdown
2016-12-17 19:39:10 +01:00

1.4 KiB

layout, title, description, date, sidebar, comments, sharing, footer, logo, ha_category, ha_release
layout title description date sidebar comments sharing footer logo ha_category ha_release
page Broadlink RM2 and A1 sensor Instructions how to integrate Broadlink RM2 and/or A1 E-air sensors within Home Assistant. 2016-12-03 21:59 true false true true broadlink.png Sensor 0.35

The broadlink sensor platform let you monitor data from an RM2 and A1 E-air. There is currently no support for the cloud API.

Configuration options:

  • name (Optional): Default BL. Sensor name
  • update_interval (Optional): Default 300. Time in seconds to fetch data from sensors
  • host (Required): The hostname/IP address to connect to.
  • mac (Required): Device mac address.
  • timeout (Optional): Timeout in seconds for the connection to the device
  • monitored_conditions array (Required): States to monitor.
    • 'temperature'
    • 'humidity'
    • 'air_quality'
    • 'light'
    • 'noise'

To set it up, add the following information to your configuration.yaml file:

Obtain sensor data from an A1:

sensor:
    platform: broadlink
    update_interval: 60
    host: IP_ADDRESS
    mac: 'MAC_ADDRESS'
    monitored_conditions:
      - temperature
      - humidity
      - air_quality
      - light
      - noise

Obtain temperature data from an RM2:

sensor:
    platform: broadlink
    update_interval: 60
    host: IP_ADDRESS
    mac: 'MAC_ADDRESS'
    monitored_conditions:
      - temperature