mirror of
https://github.com/esphome/esphome.git
synced 2025-02-24 13:58:14 +00:00
20 lines
511 B
Python
20 lines
511 B
Python
import esphome.config_validation as cv
|
|
import esphome.codegen as cg
|
|
from esphome.const import CONF_ID
|
|
|
|
CODEOWNERS = ["@OttoWinter"]
|
|
DEPENDENCIES = ["logger"]
|
|
|
|
debug_ns = cg.esphome_ns.namespace("debug")
|
|
DebugComponent = debug_ns.class_("DebugComponent", cg.Component)
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(DebugComponent),
|
|
}
|
|
).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await cg.register_component(var, config)
|