mirror of
https://github.com/esphome/esphome.git
synced 2025-03-24 19:48:17 +00:00
18 lines
350 B
C++
18 lines
350 B
C++
#include "i2c_device.h"
|
|
#include "esphome/core/log.h"
|
|
#include "esphome/core/hal.h"
|
|
#include <cinttypes>
|
|
|
|
namespace esphome {
|
|
namespace i2c_device {
|
|
|
|
static const char *const TAG = "i2c_device";
|
|
|
|
void I2CDeviceComponent::dump_config() {
|
|
ESP_LOGCONFIG(TAG, "I2CDevice");
|
|
LOG_I2C_DEVICE(this);
|
|
}
|
|
|
|
} // namespace i2c_device
|
|
} // namespace esphome
|