mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 20:48:21 +01:00
f811b1157c
* Update CI matcher * Check Executable bit * Quicklint * Updates * Allow pm1.0 and pm10.0 for PMS5003ST Fixes https://github.com/esphome/feature-requests/issues/225 * PowerSupplyRequester * Lint * Include debug data in generated main.cpp * Updates * Auto-select bit_depth * Updates
16 lines
328 B
C++
16 lines
328 B
C++
#include "ble_presence_device.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef ARDUINO_ARCH_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ble_presence {
|
|
|
|
static const char *TAG = "ble_presence";
|
|
|
|
void BLEPresenceDevice::dump_config() { LOG_BINARY_SENSOR("", "BLE Presence", this); }
|
|
|
|
} // namespace ble_presence
|
|
} // namespace esphome
|
|
|
|
#endif
|