mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
12 lines
293 B
C++
12 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
|