mirror of
https://github.com/esphome/esphome.git
synced 2025-11-16 23:05:46 +00:00
* split to spi and i2c * fix binary_sensor * i2c comms ready * fix rc522_spi binary sensor compat * lint * lint * add test and codeowners * fix refactor
23 lines
633 B
Python
23 lines
633 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import i2c, rc522
|
|
from esphome.const import CONF_ID
|
|
|
|
CODEOWNERS = ['@glmnet']
|
|
DEPENDENCIES = ['i2c']
|
|
AUTO_LOAD = ['rc522']
|
|
|
|
|
|
rc522_i2c_ns = cg.esphome_ns.namespace('rc522_i2c')
|
|
RC522I2C = rc522_i2c_ns.class_('RC522I2C', rc522.RC522, i2c.I2CDevice)
|
|
|
|
CONFIG_SCHEMA = cv.All(rc522.RC522_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_id(RC522I2C),
|
|
}).extend(i2c.i2c_device_schema(0x2c)))
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield rc522.setup_rc522(var, config)
|
|
yield i2c.register_i2c_device(var, config)
|