mirror of
https://github.com/esphome/esphome.git
synced 2025-11-15 14:25:45 +00:00
17 lines
355 B
C++
17 lines
355 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, "Sensor:");
|
|
LOG_SENSOR(" ", "Distance", this->distance_sensor_);
|
|
}
|
|
|
|
} // namespace ld2420
|
|
} // namespace esphome
|