File tree Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Expand file tree Collapse file tree 2 files changed +58
-0
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ layout : page
3
+ title : " Broadlink RM2 and A1 sensor"
4
+ description : " Instructions how to integrate Broadlink RM2 and/or A1 E-air sensors within Home Assistant."
5
+ date : 2016-11-08 21:59
6
+ sidebar : true
7
+ comments : false
8
+ sharing : true
9
+ footer : true
10
+ logo : broadlink.png
11
+ ha_category : Sensor
12
+ ha_release : 0.34
13
+ ---
14
+
15
+
16
+ The ` broadlink ` sensor platform let you monitor data from an RM2 and A1 E-air.
17
+ There is currently no support for the cloud API.
18
+
19
+ To set it up, add the following information to your ` configuration.yaml ` file:
20
+
21
+ Obtain sensor data from an A1:
22
+ ``` yaml
23
+ sensor :
24
+ platform : broadlink
25
+ update_interval : 60
26
+ host : IP_ADDRESS
27
+ mac : ' MAC_ADDRESS'
28
+ monitored_conditions :
29
+ - temperature
30
+ - humidity
31
+ - air_quality
32
+ - light
33
+ - noise
34
+ ` ` `
35
+
36
+ Obtain temperature data from an RM2:
37
+ ` ` ` yaml
38
+ sensor :
39
+ platform : broadlink
40
+ update_interval : 60
41
+ host : IP_ADDRESS
42
+ mac : ' MAC_ADDRESS'
43
+ monitored_conditions :
44
+ - temperature
45
+ ` ` `
46
+
47
+ Configuration options:
48
+ - **name** (*Optional*): Default BL. Sensor name
49
+ - **update_interval** (*Optional*): Default 300. Time in seconds to fetch data from sensors
50
+ - **host** (*Required*): The hostname/IP address to connect to.
51
+ - **mac** (*Required*): Device mac address.
52
+ - **monitored_conditions** array (*Required*): States to monitor.
53
+ - 'temperature'
54
+ - 'humidity'
55
+ - 'air_quality'
56
+ - 'light'
57
+ - 'noise'
58
+
You can’t perform that action at this time.
0 commit comments