mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 12:43:28 +02:00
18 lines
491 B
Python
18 lines
491 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)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|