mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 01:07:45 +01:00
Fix platform restriction for bme680_bsec (#4616)
* Fix platform restriction for bme680_bsec * Fix * revert spi change * Add comment back * Dont crash on rp2040 platform
This commit is contained in:
parent
c2756d57d8
commit
06f83bf1c0
1 changed files with 25 additions and 16 deletions
|
@ -1,6 +1,6 @@
|
||||||
import esphome.codegen as cg
|
import esphome.codegen as cg
|
||||||
import esphome.config_validation as cv
|
import esphome.config_validation as cv
|
||||||
from esphome.components import i2c
|
from esphome.components import i2c, esp32
|
||||||
from esphome.const import CONF_ID
|
from esphome.const import CONF_ID
|
||||||
|
|
||||||
CODEOWNERS = ["@trvrnrth"]
|
CODEOWNERS = ["@trvrnrth"]
|
||||||
|
@ -32,22 +32,31 @@ BME680BSECComponent = bme680_bsec_ns.class_(
|
||||||
"BME680BSECComponent", cg.Component, i2c.I2CDevice
|
"BME680BSECComponent", cg.Component, i2c.I2CDevice
|
||||||
)
|
)
|
||||||
|
|
||||||
CONFIG_SCHEMA = cv.Schema(
|
CONFIG_SCHEMA = cv.All(
|
||||||
{
|
cv.Schema(
|
||||||
cv.GenerateID(): cv.declare_id(BME680BSECComponent),
|
{
|
||||||
cv.Optional(CONF_TEMPERATURE_OFFSET, default=0): cv.temperature,
|
cv.GenerateID(): cv.declare_id(BME680BSECComponent),
|
||||||
cv.Optional(CONF_IAQ_MODE, default="STATIC"): cv.enum(
|
cv.Optional(CONF_TEMPERATURE_OFFSET, default=0): cv.temperature,
|
||||||
IAQ_MODE_OPTIONS, upper=True
|
cv.Optional(CONF_IAQ_MODE, default="STATIC"): cv.enum(
|
||||||
),
|
IAQ_MODE_OPTIONS, upper=True
|
||||||
cv.Optional(CONF_SAMPLE_RATE, default="LP"): cv.enum(
|
),
|
||||||
SAMPLE_RATE_OPTIONS, upper=True
|
cv.Optional(CONF_SAMPLE_RATE, default="LP"): cv.enum(
|
||||||
),
|
SAMPLE_RATE_OPTIONS, upper=True
|
||||||
cv.Optional(
|
),
|
||||||
CONF_STATE_SAVE_INTERVAL, default="6hours"
|
cv.Optional(
|
||||||
): cv.positive_time_period_minutes,
|
CONF_STATE_SAVE_INTERVAL, default="6hours"
|
||||||
},
|
): cv.positive_time_period_minutes,
|
||||||
|
}
|
||||||
|
).extend(i2c.i2c_device_schema(0x76)),
|
||||||
cv.only_with_arduino,
|
cv.only_with_arduino,
|
||||||
).extend(i2c.i2c_device_schema(0x76))
|
cv.Any(
|
||||||
|
cv.only_on_esp8266,
|
||||||
|
cv.All(
|
||||||
|
cv.only_on_esp32,
|
||||||
|
esp32.only_on_variant(supported=[esp32.const.VARIANT_ESP32]),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
async def to_code(config):
|
async def to_code(config):
|
||||||
|
|
Loading…
Reference in a new issue