esphome-docs/components/sensor/ble_rssi.rst

40 lines
1.1 KiB
ReStructuredText
Raw Normal View History

ESP32 Bluetooth Low Energy RSSI Sensor
======================================
2018-11-14 22:12:27 +01:00
.. seo::
:description: Instructions for setting up RSSI sensors for the ESP32 BLE.
:image: bluetooth.png
2018-11-14 22:12:27 +01:00
:keywords: ESP32
The ``ble_rssi`` sensor platform lets you track the RSSI value or signal strength of a
BLE device. See :ref:`the binary sensor setup <esp32_ble_tracker-setting_up_devices>` for
instructions for setting up this platform.
.. code-block:: yaml
# Example configuration entry
esp32_ble_tracker:
scan_interval: 300s
sensor:
- platform: ble_rssi
mac_address: AC:37:43:77:5F:4C
name: "BLE Google Home Mini RSSI value"
Configuration variables:
2018-08-24 22:44:01 +02:00
------------------------
- **mac_address** (**Required**, MAC Address): The MAC address to track for this
sensor.
- **name** (**Required**, string): The name of the sensor.
- **id** (*Optional*, :ref:`config-id`): Manually specify the ID used for code generation.
2019-02-17 12:28:17 +01:00
- All other options from :ref:`Sensor <config-sensor>`.
See Also
2018-08-24 22:44:01 +02:00
--------
- :doc:`/components/esp32_ble_tracker`
- :doc:`/components/sensor/index`
2019-05-12 22:44:59 +02:00
- :apiref:`ble_rssi/ble_rssi_sensor.h`
- :ghedit:`Edit`