mirror of
https://github.com/esphome/esphome.git
synced 2026-09-21 03:58:41 +00:00
11 lines
314 B
C++
11 lines
314 B
C++
#include "esphome/core/log.h"
|
|
#include "internal_temperature.h"
|
|
|
|
namespace esphome::internal_temperature {
|
|
|
|
static const char *const TAG = "internal_temperature";
|
|
|
|
void InternalTemperatureSensor::dump_config() { LOG_SENSOR("", "Internal Temperature Sensor", this); }
|
|
|
|
} // namespace esphome::internal_temperature
|