import esphome.codegen as cg from esphome.components import output import esphome.config_validation as cv from esphome.const import CONF_ID from .. import CONF_EMC2101_ID, EMC2101_COMPONENT_SCHEMA, emc2101_ns DEPENDENCIES = ["emc2101"] EMC2101Output = emc2101_ns.class_("EMC2101Output", output.FloatOutput) CONFIG_SCHEMA = EMC2101_COMPONENT_SCHEMA.extend( { cv.Required(CONF_ID): cv.declare_id(EMC2101Output), } ) async def to_code(config): paren = await cg.get_variable(config[CONF_EMC2101_ID]) var = cg.new_Pvariable(config[CONF_ID], paren) await output.register_output(var, config)