2022-03-30 21:50:39 +02:00

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.
DIY
0.37 Local Polling skybeacon
sensor
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 %}