mirror of
https://github.com/esphome/esphome.git
synced 2026-02-18 15:35:59 -07:00
68 lines
2.5 KiB
Python
68 lines
2.5 KiB
Python
"""
|
|
██╗ ██╗ █████╗ ██████╗ ███╗ ██╗██╗███╗ ██╗ ██████╗
|
|
██║ ██║██╔══██╗██╔══██╗████╗ ██║██║████╗ ██║██╔════╝
|
|
██║ █╗ ██║███████║██████╔╝██╔██╗ ██║██║██╔██╗ ██║██║ ███╗
|
|
██║███╗██║██╔══██║██╔══██╗██║╚██╗██║██║██║╚██╗██║██║ ██║
|
|
╚███╔███╔╝██║ ██║██║ ██║██║ ╚████║██║██║ ╚████║╚██████╔╝
|
|
╚══╝╚══╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═══╝╚═╝╚═╝ ╚═══╝ ╚═════╝
|
|
|
|
AUTO-GENERATED FILE - DO NOT EDIT!
|
|
|
|
This file was auto-generated by libretiny/generate_components.py.
|
|
Any manual changes WILL BE LOST on regeneration.
|
|
|
|
To customize this component:
|
|
- Pin validators: Create gpio.py with validate_pin() or validate_usage()
|
|
- Schema extensions: Create schema.py with COMPONENT_SCHEMA or COMPONENT_PIN_SCHEMA
|
|
|
|
Platform-specific code should be added to the main libretiny component
|
|
(__init__.py in esphome/components/libretiny/) rather than here.
|
|
"""
|
|
|
|
from esphome import pins
|
|
from esphome.components import libretiny
|
|
from esphome.components.libretiny.const import (
|
|
COMPONENT_BK72XX,
|
|
KEY_COMPONENT_DATA,
|
|
KEY_LIBRETINY,
|
|
LibreTinyComponent,
|
|
)
|
|
from esphome.core import CORE
|
|
|
|
from .boards import BK72XX_BOARD_PINS, BK72XX_BOARDS
|
|
|
|
CODEOWNERS = ["@kuba2k2"]
|
|
AUTO_LOAD = ["libretiny"]
|
|
IS_TARGET_PLATFORM = True
|
|
|
|
COMPONENT_DATA = LibreTinyComponent(
|
|
name=COMPONENT_BK72XX,
|
|
boards=BK72XX_BOARDS,
|
|
board_pins=BK72XX_BOARD_PINS,
|
|
pin_validation=None,
|
|
usage_validation=None,
|
|
supports_atomics=False,
|
|
)
|
|
|
|
|
|
def _set_core_data(config):
|
|
CORE.data[KEY_LIBRETINY] = {}
|
|
CORE.data[KEY_LIBRETINY][KEY_COMPONENT_DATA] = COMPONENT_DATA
|
|
return config
|
|
|
|
|
|
CONFIG_SCHEMA = libretiny.BASE_SCHEMA
|
|
|
|
PIN_SCHEMA = libretiny.gpio.BASE_PIN_SCHEMA
|
|
|
|
CONFIG_SCHEMA.prepend_extra(_set_core_data)
|
|
|
|
|
|
async def to_code(config):
|
|
return await libretiny.component_to_code(config)
|
|
|
|
|
|
@pins.PIN_SCHEMA_REGISTRY.register("bk72xx", PIN_SCHEMA)
|
|
async def pin_to_code(config):
|
|
return await libretiny.gpio.component_pin_to_code(config)
|