mirror of
https://github.com/esphome/esphome.git
synced 2026-02-18 15:35:59 -07:00
13 lines
256 B
C++
13 lines
256 B
C++
#include "bmp581_i2c.h"
|
|
#include "esphome/core/hal.h"
|
|
#include "esphome/core/log.h"
|
|
|
|
namespace esphome::bmp581_i2c {
|
|
|
|
void BMP581I2CComponent::dump_config() {
|
|
LOG_I2C_DEVICE(this);
|
|
BMP581Component::dump_config();
|
|
}
|
|
|
|
} // namespace esphome::bmp581_i2c
|