32 lines
846 B
Python
32 lines
846 B
Python
import esphome.codegen as cg
|
|
from esphome.components import switch
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_SWITCH_DATAPOINT
|
|
|
|
from .. import CONF_TUYA_ID, Tuya, tuya_ns
|
|
|
|
DEPENDENCIES = ["tuya"]
|
|
CODEOWNERS = ["@jesserockz"]
|
|
|
|
TuyaSwitch = tuya_ns.class_("TuyaSwitch", switch.Switch, cg.Component)
|
|
|
|
CONFIG_SCHEMA = (
|
|
switch.switch_schema(TuyaSwitch)
|
|
.extend(
|
|
{
|
|
cv.GenerateID(CONF_TUYA_ID): cv.use_id(Tuya),
|
|
cv.Required(CONF_SWITCH_DATAPOINT): cv.uint8_t,
|
|
}
|
|
)
|
|
.extend(cv.COMPONENT_SCHEMA)
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = await switch.new_switch(config)
|
|
await cg.register_component(var, config)
|
|
|
|
paren = await cg.get_variable(config[CONF_TUYA_ID])
|
|
cg.add(var.set_tuya_parent(paren))
|
|
|
|
cg.add(var.set_switch_id(config[CONF_SWITCH_DATAPOINT]))
|