mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
9b28c732c6
* fix wifi info * lint time based cover
14 lines
454 B
C++
14 lines
454 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); }
|
|
|
|
} // namespace wifi_info
|
|
} // namespace esphome
|