mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
64 lines
1.9 KiB
Python
64 lines
1.9 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import binary_sensor
|
|
from esphome.const import (
|
|
CONF_LIGHT,
|
|
CONF_MOTION,
|
|
CONF_TIMEOUT,
|
|
DEVICE_CLASS_LIGHT,
|
|
DEVICE_CLASS_MOTION,
|
|
CONF_ID,
|
|
)
|
|
from esphome.core import TimePeriod
|
|
|
|
from . import XiaomiRTCGQ02LM
|
|
|
|
DEPENDENCIES = ["xiaomi_rtcgq02lm"]
|
|
|
|
CONF_BUTTON = "button"
|
|
|
|
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(XiaomiRTCGQ02LM),
|
|
cv.Optional(CONF_MOTION): binary_sensor.binary_sensor_schema(
|
|
device_class=DEVICE_CLASS_MOTION
|
|
).extend(
|
|
{
|
|
cv.Optional(CONF_TIMEOUT, default="5s"): cv.All(
|
|
cv.positive_time_period_milliseconds,
|
|
cv.Range(max=TimePeriod(milliseconds=65535)),
|
|
),
|
|
}
|
|
),
|
|
cv.Optional(CONF_LIGHT): binary_sensor.binary_sensor_schema(
|
|
device_class=DEVICE_CLASS_LIGHT
|
|
),
|
|
cv.Optional(CONF_BUTTON): binary_sensor.binary_sensor_schema().extend(
|
|
{
|
|
cv.Optional(CONF_TIMEOUT, default="200ms"): cv.All(
|
|
cv.positive_time_period_milliseconds,
|
|
cv.Range(max=TimePeriod(milliseconds=65535)),
|
|
),
|
|
}
|
|
),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
parent = await cg.get_variable(config[CONF_ID])
|
|
|
|
if CONF_MOTION in config:
|
|
sens = await binary_sensor.new_binary_sensor(config[CONF_MOTION])
|
|
cg.add(parent.set_motion(sens))
|
|
cg.add(parent.set_motion_timeout(config[CONF_MOTION][CONF_TIMEOUT]))
|
|
|
|
if CONF_LIGHT in config:
|
|
sens = await binary_sensor.new_binary_sensor(config[CONF_LIGHT])
|
|
cg.add(parent.set_light(sens))
|
|
|
|
if CONF_BUTTON in config:
|
|
sens = await binary_sensor.new_binary_sensor(config[CONF_BUTTON])
|
|
cg.add(parent.set_button(sens))
|
|
cg.add(parent.set_button_timeout(config[CONF_BUTTON][CONF_TIMEOUT]))
|