mirror of
https://github.com/esphome/esphome.git
synced 2026-08-23 06:36:23 +00:00
11 lines
273 B
C++
11 lines
273 B
C++
#include "ble_presence_device.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome::ble_presence {
|
|
|
|
static const char *const TAG = "ble_presence";
|
|
|
|
void BLEPresenceDevice::dump_config() { LOG_BINARY_SENSOR("", "BLE Presence", this); }
|
|
|
|
} // namespace esphome::ble_presence
|