mirror of
https://github.com/esphome/esphome.git
synced 2025-04-02 08:58:17 +01:00
16 lines
548 B
C++
16 lines
548 B
C++
#include "wifi_info_text_sensor.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace wifi_info {
|
|
|
|
static const char *TAG = "wifi_info";
|
|
|
|
void IPAddressWiFiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo IPAddress", this); }
|
|
void SSIDWiFiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo SSID", this); }
|
|
void BSSIDWiFiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo BSSID", this); }
|
|
void MacAddressWifiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo Mac Address", this); }
|
|
|
|
} // namespace wifi_info
|
|
} // namespace esphome
|