1
0
mirror of https://github.com/esphome/esphome.git synced 2025-04-18 08:40:29 +01:00
esphome/esphome/components/wifi_signal/wifi_signal_sensor.cpp

15 lines
316 B
C++

#include "wifi_signal_sensor.h"
#ifdef USE_WIFI
#include "esphome/core/log.h"
namespace esphome {
namespace wifi_signal {
static const char *const TAG = "wifi_signal.sensor";
void WiFiSignalSensor::dump_config() { LOG_SENSOR("", "WiFi Signal", this); }
} // namespace wifi_signal
} // namespace esphome
#endif