title |
description |
ha_category |
ha_release |
ha_iot_class |
ha_domain |
ha_platforms |
ha_integration_type |
related |
ha_quality_scale |
Skybeacon |
Instructions on how to integrate MiFlora BLE plant sensor with Home Assistant. |
|
0.37 |
Local Polling |
skybeacon |
|
integration |
docs |
title |
/docs/configuration/ |
Configuration file |
|
|
legacy |
The skybeacon
sensor {% term integration %} supports CR2477-powered iBeacon/eddystone sensors that come with temperature/sensor module.
Configuration
To use your Skybeacon {% term integration %} in your installation, add the following to your {% term "configuration.yaml
" %} file.
{% include integrations/restart_ha_after_config_inclusion.md %}
# 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 %}