mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 19:54:14 +01:00
30 lines
823 B
Python
30 lines
823 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import spi, rc522
|
|
from esphome.const import CONF_ID
|
|
|
|
CODEOWNERS = ["@glmnet"]
|
|
DEPENDENCIES = ["spi"]
|
|
AUTO_LOAD = ["rc522"]
|
|
MULTI_CONF = True
|
|
|
|
rc522_spi_ns = cg.esphome_ns.namespace("rc522_spi")
|
|
RC522Spi = rc522_spi_ns.class_("RC522Spi", rc522.RC522, spi.SPIDevice)
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
rc522.RC522_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(RC522Spi),
|
|
}
|
|
).extend(spi.spi_device_schema(cs_pin_required=True))
|
|
)
|
|
|
|
FINAL_VALIDATE_SCHEMA = spi.final_validate_device_schema(
|
|
"rc522_spi", require_miso=True, require_mosi=True
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await rc522.setup_rc522(var, config)
|
|
await spi.register_spi_device(var, config)
|