mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
13 lines
253 B
C++
13 lines
253 B
C++
#include "sun_sensor.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace sun {
|
|
|
|
static const char *const TAG = "sun.sensor";
|
|
|
|
void SunSensor::dump_config() { LOG_SENSOR("", "Sun Sensor", this); }
|
|
|
|
} // namespace sun
|
|
} // namespace esphome
|