mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-24 06:38:29 +02:00
13 lines
293 B
C++
13 lines
293 B
C++
#include "wifi_signal_sensor.h"
|
|
#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
|