mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
16 lines
313 B
C++
16 lines
313 B
C++
#include "ble_scanner.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ble_scanner {
|
|
|
|
static const char *const TAG = "ble_scanner";
|
|
|
|
void BLEScanner::dump_config() { LOG_TEXT_SENSOR("", "BLE Scanner", this); }
|
|
|
|
} // namespace ble_scanner
|
|
} // namespace esphome
|
|
|
|
#endif
|