mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
17 lines
310 B
C++
17 lines
310 B
C++
#include "ble_rssi_sensor.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ble_rssi {
|
|
|
|
static const char *const TAG = "ble_rssi";
|
|
|
|
void BLERSSISensor::dump_config() { LOG_SENSOR("", "BLE RSSI Sensor", this); }
|
|
|
|
} // namespace ble_rssi
|
|
} // namespace esphome
|
|
|
|
#endif
|