mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
41b5cb06d3
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
16 lines
396 B
C++
16 lines
396 B
C++
#include "ethernet_info_text_sensor.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
#ifdef USE_ESP32_FRAMEWORK_ARDUINO
|
|
|
|
namespace esphome {
|
|
namespace ethernet_info {
|
|
|
|
static const char *const TAG = "ethernet_info";
|
|
|
|
void IPAddressEthernetInfo::dump_config() { LOG_TEXT_SENSOR("", "EthernetInfo IPAddress", this); }
|
|
|
|
} // namespace ethernet_info
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32_FRAMEWORK_ARDUINO
|