Franck Nijhof 533bb3866f
HTTPS-everywhere (update links in our website) (#10932)
* HTTPS-everywhere (update links in our website)

* HTTPS-everywhere (round 2)

* HTTPS-everywhere (round 3)
2019-10-21 23:11:12 +02:00

1.2 KiB

title, description, ha_category, ha_release, ha_iot_class
title description ha_category ha_release ha_iot_class
Skybeacon sensor Instructions on how to integrate MiFlora BLE plant sensor with Home Assistant.
DIY
0.37 Local Polling

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 %}