1
0
mirror of https://github.com/esphome/esphome.git synced 2025-09-17 02:32:20 +01:00
Files
esphome/esphome/components/wifi_signal/wifi_signal_sensor.cpp
2024-08-14 07:58:30 +12:00

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