mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-04-25 13:57:37 +00:00
1.3 KiB
1.3 KiB
title | description | ha_category | ha_release | ha_iot_class | ha_domain | ha_platforms | ha_integration_type | ||
---|---|---|---|---|---|---|---|---|---|
Skybeacon | Instructions on how to integrate MiFlora BLE plant sensor with Home Assistant. |
|
0.37 | Local Polling | skybeacon |
|
integration |
The skybeacon
sensor platform supports CR2477-powered iBeacon/eddystone sensors that come with temperature/sensor module.
Configuration
To use your Skybeacon sensor in your installation, add the following to your configuration.yaml
file:
# Example configuration.yaml entry
sensor:
- platform: skybeacon
mac: "xx:xx:xx:xx:xx:xx"
monitored_conditions:
- temperature
- humidity
{% configuration %}
mac:
description: "The MAC address of your sensor. You can find this be running hcitool lescan
from command line."
required: true
type: string
name:
description: The name of the Skybeacon sensor.
required: false
type: string
default: Skybeacon
monitored_conditions:
description: The parameters that should be monitored.
required: false
type: list
keys:
temperature:
description: Temperature at the sensor's location.
humidity:
description: Humidity at the sensor's location.
{% endconfiguration %}