You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: "Instructions on how to integrate MiFlora BLE plant sensor with Home Assistant."
5
+
date: 2017-01-17 10:00
6
+
sidebar: true
7
+
comments: false
8
+
sharing: true
9
+
footer: true
10
+
ha_category: DIY
11
+
ha_release: 0.37
12
+
ha_iot_class: "Local Polling"
13
+
---
14
+
15
+
The `skybeacon` sensor platform supports [CR2477](http://cnsky9.en.alibaba.com)-powered [iBeacon](https://en.wikipedia.org/wiki/IBeacon)/eddystone sensors that come with temperature/sensor module.
16
+
17
+
To use your Skybeacon sensor in your installation, add the following to your `configuration.yaml` file:
18
+
19
+
```yaml
20
+
# Example configuration.yaml entry
21
+
sensor:
22
+
- platform: skybeacon
23
+
mac: "xx:xx:xx:xx:xx:xx"
24
+
monitored_conditions:
25
+
- temperature
26
+
- humidity
27
+
```
28
+
29
+
- **mac** (*Required*): The MAC address of your sensor. You can find this be running `hcitool lescan` from command line.
30
+
- **monitored_conditions** array (*Required*): The paramaters that should be monitored.
31
+
- **temperature**: Temperature at the sensor's location.
32
+
- **humidity**: Humidity at the sensor's location.
0 commit comments