mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
8e75980ebd
* Cleanup dashboard JS * Add vscode * Save start_mark/end_mark * Updates * Updates * Remove need for cv.nameable It's a bit hacky but removes so much bloat from integrations * Add enum helper * Document APIs, and Improvements * Fixes * Fixes * Update PULL_REQUEST_TEMPLATE.md * Updates * Updates * Updates
20 lines
754 B
Python
20 lines
754 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import switch
|
|
from esphome.const import CONF_ID, CONF_INVERTED, CONF_ICON, ICON_RESTART
|
|
|
|
restart_ns = cg.esphome_ns.namespace('restart')
|
|
RestartSwitch = restart_ns.class_('RestartSwitch', switch.Switch, cg.Component)
|
|
|
|
CONFIG_SCHEMA = switch.SWITCH_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_id(RestartSwitch),
|
|
cv.Optional(CONF_INVERTED): cv.invalid("Restart switches do not support inverted mode!"),
|
|
|
|
cv.Optional(CONF_ICON, default=ICON_RESTART): switch.icon,
|
|
}).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|
|
yield switch.register_switch(var, config)
|