mirror of
https://github.com/esphome/esphome.git
synced 2025-04-17 16:20:31 +01:00
17 lines
356 B
Python
17 lines
356 B
Python
import esphome.config_validation as cv
|
|
from esphome.components import button
|
|
|
|
from .. import template_ns
|
|
|
|
TemplateButton = template_ns.class_("TemplateButton", button.Button)
|
|
|
|
CONFIG_SCHEMA = button.BUTTON_SCHEMA.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(TemplateButton),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
await button.new_button(config)
|