mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 20:53:26 +02:00
69879920eb
* Add black Update pre commit Update pre commit add empty line * Format with black
26 lines
776 B
Python
26 lines
776 B
Python
from esphome import pins
|
|
import esphome.config_validation as cv
|
|
import esphome.codegen as cg
|
|
from esphome.const import CONF_ID, CONF_PIN
|
|
from esphome.core import coroutine_with_priority
|
|
|
|
status_led_ns = cg.esphome_ns.namespace("status_led")
|
|
StatusLED = status_led_ns.class_("StatusLED", cg.Component)
|
|
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(StatusLED),
|
|
cv.Required(CONF_PIN): pins.gpio_output_pin_schema,
|
|
}
|
|
).extend(cv.COMPONENT_SCHEMA)
|
|
|
|
|
|
@coroutine_with_priority(80.0)
|
|
def to_code(config):
|
|
pin = yield cg.gpio_pin_expression(config[CONF_PIN])
|
|
rhs = StatusLED.new(pin)
|
|
var = cg.Pvariable(config[CONF_ID], rhs)
|
|
yield cg.register_component(var, config)
|
|
cg.add(var.pre_setup())
|
|
cg.add_define("USE_STATUS_LED")
|