mirror of
https://github.com/esphome/esphome.git
synced 2024-12-03 12:14:13 +01:00
aebad04c0b
Co-authored-by: Guillermo Ruffino <glm.net@gmail.com> Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com>
25 lines
782 B
Python
25 lines
782 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)
|
|
async def to_code(config):
|
|
pin = await cg.gpio_pin_expression(config[CONF_PIN])
|
|
rhs = StatusLED.new(pin)
|
|
var = cg.Pvariable(config[CONF_ID], rhs)
|
|
await cg.register_component(var, config)
|
|
cg.add(var.pre_setup())
|
|
cg.add_define("USE_STATUS_LED")
|