mirror of
https://github.com/esphome/esphome.git
synced 2024-11-29 02:04:13 +01:00
4b783c0372
* bme spi finally * linter * CO * tidy * lint * tidy [2] * tidy[-1] * final solution * Update test1.yaml remove failed test * Update test1.1.yaml add test to another file with free GPIO5 pin * fix spi read bytes * fix tests * rename bme280 to bme280_i2c
20 lines
656 B
C++
20 lines
656 B
C++
#pragma once
|
|
|
|
#include "esphome/components/bme280_base/bme280_base.h"
|
|
#include "esphome/components/i2c/i2c.h"
|
|
|
|
namespace esphome {
|
|
namespace bme280_i2c {
|
|
|
|
static const char *const TAG = "bme280_i2c.sensor";
|
|
|
|
class BME280I2CComponent : public esphome::bme280_base::BME280Component, public i2c::I2CDevice {
|
|
bool read_byte(uint8_t a_register, uint8_t *data) override;
|
|
bool write_byte(uint8_t a_register, uint8_t data) override;
|
|
bool read_bytes(uint8_t a_register, uint8_t *data, size_t len) override;
|
|
bool read_byte_16(uint8_t a_register, uint16_t *data) override;
|
|
void dump_config() override;
|
|
};
|
|
|
|
} // namespace bme280_i2c
|
|
} // namespace esphome
|