mirror of
https://github.com/esphome/esphome.git
synced 2024-12-04 12:38:17 +01:00
fbc1b3e316
* 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
9 lines
215 B
Python
9 lines
215 B
Python
import esphome.components.rc522.binary_sensor as rc522_binary_sensor
|
|
|
|
DEPENDENCIES = ['rc522']
|
|
|
|
CONFIG_SCHEMA = rc522_binary_sensor.CONFIG_SCHEMA
|
|
|
|
|
|
def to_code(config):
|
|
yield rc522_binary_sensor.to_code(config)
|