mirror of
https://github.com/esphome/esphome.git
synced 2025-04-09 04:10:35 +01:00
17 lines
334 B
C++
17 lines
334 B
C++
#include "ble_presence_device.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ble_presence {
|
|
|
|
static const char *const TAG = "ble_presence";
|
|
|
|
void BLEPresenceDevice::dump_config() { LOG_BINARY_SENSOR("", "BLE Presence", this); }
|
|
|
|
} // namespace ble_presence
|
|
} // namespace esphome
|
|
|
|
#endif
|