mirror of
https://github.com/esphome/esphome.git
synced 2025-01-05 20:31:44 +01:00
d3375193a9
Co-authored-by: Andreas Hergert <andreas.hergert@otrs.com> Co-authored-by: Otto Winter <otto@otto-winter.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
13 lines
343 B
C++
13 lines
343 B
C++
#include "pipsolar_textsensor.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/application.h"
|
|
|
|
namespace esphome {
|
|
namespace pipsolar {
|
|
|
|
static const char *const TAG = "pipsolar.text_sensor";
|
|
|
|
void PipsolarTextSensor::dump_config() { LOG_TEXT_SENSOR("", "Pipsolar TextSensor", this); }
|
|
|
|
} // namespace pipsolar
|
|
} // namespace esphome
|