mirror of
https://github.com/esphome/esphome.git
synced 2025-11-14 22:05:54 +00:00
* 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
25 lines
618 B
Python
25 lines
618 B
Python
import esphome.codegen as cg
|
|
from esphome.components import spi
|
|
from esphome.components.bme280_base.sensor import (
|
|
to_code as to_code_base,
|
|
cv,
|
|
CONFIG_SCHEMA_BASE,
|
|
)
|
|
|
|
DEPENDENCIES = ["spi"]
|
|
AUTO_LOAD = ["bme280_base"]
|
|
|
|
|
|
bme280_spi_ns = cg.esphome_ns.namespace("bme280_spi")
|
|
BME280SPIComponent = bme280_spi_ns.class_(
|
|
"BME280SPIComponent", cg.PollingComponent, spi.SPIDevice
|
|
)
|
|
|
|
CONFIG_SCHEMA = CONFIG_SCHEMA_BASE.extend(spi.spi_device_schema()).extend(
|
|
{cv.GenerateID(): cv.declare_id(BME280SPIComponent)}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
await to_code_base(config, func=spi.register_spi_device)
|