mirror of
https://github.com/esphome/esphome.git
synced 2026-03-04 11:48:21 -07:00
13 lines
371 B
Python
13 lines
371 B
Python
from esphome.components import binary_sensor, remote_base
|
|
|
|
from . import FILTER_SOURCE_FILES # noqa: F401 pylint: disable=unused-import
|
|
|
|
DEPENDENCIES = ["remote_receiver"]
|
|
|
|
CONFIG_SCHEMA = remote_base.validate_binary_sensor
|
|
|
|
|
|
async def to_code(config):
|
|
var = await remote_base.build_binary_sensor(config)
|
|
await binary_sensor.register_binary_sensor(var, config)
|