mirror of
https://github.com/esphome/esphome.git
synced 2025-02-24 05:48:14 +00:00
27 lines
726 B
Python
27 lines
726 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import as3935, spi
|
|
from esphome.const import CONF_ID
|
|
|
|
AUTO_LOAD = ["as3935"]
|
|
DEPENDENCIES = ["spi"]
|
|
|
|
as3935_spi_ns = cg.esphome_ns.namespace("as3935_spi")
|
|
SPIAS3935 = as3935_spi_ns.class_("SPIAS3935Component", as3935.AS3935, spi.SPIDevice)
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
as3935.AS3935_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(SPIAS3935),
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
.extend(spi.spi_device_schema(cs_pin_required=True))
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await as3935.setup_as3935(var, config)
|
|
await spi.register_spi_device(var, config)
|