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.
22 lines
331 B
22 lines
331 B
#include "esphome/core/log.h"
|
|
#include "empty_i2c_sensor.h"
|
|
|
|
namespace esphome {
|
|
namespace empty_i2c_sensor {
|
|
|
|
static const char *TAG = "empty_i2c_sensor.sensor";
|
|
|
|
void EmptyI2CSensor::setup(){
|
|
|
|
}
|
|
|
|
void EmptyI2CSensor::update(){
|
|
|
|
}
|
|
|
|
void EmptyI2CSensor::dump_config(){
|
|
|
|
}
|
|
|
|
} // namespace EmptyI2CSensor
|
|
} // namespace esphome
|