ESPHome 2026.6.0-dev
Loading...
Searching...
No Matches
ble_rssi_sensor.cpp
Go to the documentation of this file.
1#include "ble_rssi_sensor.h"
2#include "esphome/core/log.h"
3
4#ifdef USE_ESP32
5
7
8static const char *const TAG = "ble_rssi";
9
10void BLERSSISensor::dump_config() { LOG_SENSOR("", "BLE RSSI Sensor", this); }
11
12} // namespace esphome::ble_rssi
13
14#endif