mirror of
https://github.com/esphome/esphome.git
synced 2025-02-24 05:48:14 +00:00
10 lines
221 B
Python
10 lines
221 B
Python
import esphome.components.rc522.binary_sensor as rc522_binary_sensor
|
|
|
|
DEPENDENCIES = ["rc522"]
|
|
|
|
CONFIG_SCHEMA = rc522_binary_sensor.CONFIG_SCHEMA
|
|
|
|
|
|
async def to_code(config):
|
|
await rc522_binary_sensor.to_code(config)
|