mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-20 13:03:28 +02:00
22cdb8dfc3
Co-authored-by: descipher <120155735+GelidusResearch@users.noreply.github.com>
17 lines
362 B
C++
17 lines
362 B
C++
#include "ld2420_sensor.h"
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace ld2420 {
|
|
|
|
static const char *const TAG = "LD2420.sensor";
|
|
|
|
void LD2420Sensor::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "LD2420 Sensor:");
|
|
LOG_SENSOR(" ", "Distance", this->distance_sensor_);
|
|
}
|
|
|
|
} // namespace ld2420
|
|
} // namespace esphome
|