mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
33 lines
866 B
C++
33 lines
866 B
C++
#pragma once
|
|
|
|
#include "esphome/core/component.h"
|
|
#include "esphome/components/text_sensor/text_sensor.h"
|
|
#include "esphome/components/ethernet/ethernet_component.h"
|
|
|
|
#ifdef USE_ESP32
|
|
|
|
namespace esphome {
|
|
namespace ethernet_info {
|
|
|
|
class IPAddressEthernetInfo : public PollingComponent, public text_sensor::TextSensor {
|
|
public:
|
|
void update() override {
|
|
auto ip = ethernet::global_eth_component->get_ip_address();
|
|
if (ip != this->last_ip_) {
|
|
this->last_ip_ = ip;
|
|
this->publish_state(network::IPAddress(ip).str());
|
|
}
|
|
}
|
|
|
|
float get_setup_priority() const override { return setup_priority::ETHERNET; }
|
|
std::string unique_id() override { return get_mac_address() + "-ethernetinfo"; }
|
|
void dump_config() override;
|
|
|
|
protected:
|
|
network::IPAddress last_ip_;
|
|
};
|
|
|
|
} // namespace ethernet_info
|
|
} // namespace esphome
|
|
|
|
#endif // USE_ESP32
|