mirror of
https://github.com/esphome/esphome.git
synced 2025-11-19 16:25:50 +00:00
15 lines
329 B
C++
15 lines
329 B
C++
#include "ld2420_sensor.h"
|
|
#include "esphome/core/helpers.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome::ld2420 {
|
|
|
|
static const char *const TAG = "ld2420.sensor";
|
|
|
|
void LD2420Sensor::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "Sensor:");
|
|
LOG_SENSOR(" ", "Distance", this->distance_sensor_);
|
|
}
|
|
|
|
} // namespace esphome::ld2420
|