You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
417 B
26 lines
417 B
#include "esphome/core/log.h"
|
|
#include "empty_uart_sensor.h"
|
|
|
|
namespace esphome {
|
|
namespace empty_uart_sensor {
|
|
|
|
static const char *TAG = "empty_uart_sensor.sensor";
|
|
|
|
void EmptyUARTSensor::setup() {
|
|
|
|
}
|
|
|
|
void EmptyUARTSensor::update() {
|
|
|
|
}
|
|
|
|
void EmptyUARTSensor::loop() {
|
|
|
|
}
|
|
|
|
void EmptyUARTSensor::dump_config(){
|
|
ESP_LOGCONFIG(TAG, "Empty UART sensor");
|
|
}
|
|
|
|
} // namespace empty_UART_sensor
|
|
} // namespace esphome
|