mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-21 13:33:27 +02: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
24 lines
767 B
Python
24 lines
767 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome import pins
|
|
from esphome.components import output
|
|
from esphome.const import CONF_ID, CONF_PIN
|
|
from .. import gpio_ns
|
|
|
|
GPIOBinaryOutput = gpio_ns.class_('GPIOBinaryOutput', output.BinaryOutput,
|
|
cg.Component)
|
|
|
|
CONFIG_SCHEMA = output.BINARY_OUTPUT_SCHEMA.extend({
|
|
cv.Required(CONF_ID): cv.declare_id(GPIOBinaryOutput),
|
|
cv.Required(CONF_PIN): pins.gpio_output_pin_schema,
|
|
}).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield output.register_output(var, config)
|
|
yield cg.register_component(var, config)
|
|
|
|
pin = yield cg.gpio_pin_expression(config[CONF_PIN])
|
|
cg.add(var.set_pin(pin))
|