mirror of
https://github.com/esphome/esphome.git
synced 2025-01-06 12:51:45 +01:00
0de47e2a4e
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
17 lines
744 B
C++
17 lines
744 B
C++
#include "wifi_info_text_sensor.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome {
|
|
namespace wifi_info {
|
|
|
|
static const char *const TAG = "wifi_info";
|
|
|
|
void IPAddressWiFiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo IPAddress", this); }
|
|
void ScanResultsWiFiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo Scan Results", 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); }
|
|
void DNSAddressWifiInfo::dump_config() { LOG_TEXT_SENSOR("", "WifiInfo DNS Address", this); }
|
|
|
|
} // namespace wifi_info
|
|
} // namespace esphome
|