mirror of
https://github.com/esphome/esphome.git
synced 2024-11-22 11:47:30 +01:00
fix build lang schema for spi and i2c (#5509)
This commit is contained in:
parent
c9a8911029
commit
5d5cc96017
@ -82,6 +82,10 @@ def load_components():
|
|||||||
components[domain] = get_component(domain)
|
components[domain] = get_component(domain)
|
||||||
|
|
||||||
|
|
||||||
|
from esphome.const import CONF_TYPE, KEY_CORE
|
||||||
|
from esphome.core import CORE
|
||||||
|
|
||||||
|
CORE.data[KEY_CORE] = {}
|
||||||
load_components()
|
load_components()
|
||||||
|
|
||||||
# Import esphome after loading components (so schema is tracked)
|
# Import esphome after loading components (so schema is tracked)
|
||||||
@ -91,7 +95,6 @@ import esphome.config_validation as cv
|
|||||||
from esphome import automation
|
from esphome import automation
|
||||||
from esphome import pins
|
from esphome import pins
|
||||||
from esphome.components import remote_base
|
from esphome.components import remote_base
|
||||||
from esphome.const import CONF_TYPE
|
|
||||||
from esphome.loader import get_platform, CORE_COMPONENTS_PATH
|
from esphome.loader import get_platform, CORE_COMPONENTS_PATH
|
||||||
from esphome.helpers import write_file_if_changed
|
from esphome.helpers import write_file_if_changed
|
||||||
from esphome.util import Registry
|
from esphome.util import Registry
|
||||||
@ -868,8 +871,11 @@ def convert(schema, config_var, path):
|
|||||||
else:
|
else:
|
||||||
raise Exception("Unknown extracted schema type")
|
raise Exception("Unknown extracted schema type")
|
||||||
elif config_var.get("key") == "GeneratedID":
|
elif config_var.get("key") == "GeneratedID":
|
||||||
if path == "i2c/CONFIG_SCHEMA/extL/all/id":
|
if path.startswith("i2c/CONFIG_SCHEMA/") and path.endswith("/id"):
|
||||||
config_var["id_type"] = {"class": "i2c::I2CBus", "parents": ["Component"]}
|
config_var["id_type"] = {
|
||||||
|
"class": "i2c::I2CBus",
|
||||||
|
"parents": ["Component"],
|
||||||
|
}
|
||||||
elif path == "uart/CONFIG_SCHEMA/val 1/extL/all/id":
|
elif path == "uart/CONFIG_SCHEMA/val 1/extL/all/id":
|
||||||
config_var["id_type"] = {
|
config_var["id_type"] = {
|
||||||
"class": "uart::UARTComponent",
|
"class": "uart::UARTComponent",
|
||||||
|
Loading…
Reference in New Issue
Block a user