mirror of
https://github.com/esphome/esphome.git
synced 2025-03-24 19:48:17 +00:00
Co-authored-by: Jesse Hills <3060199+jesserockz@users.noreply.github.com> Co-authored-by: Marcus Better <marcus@better.se> Co-authored-by: Trevor Schirmer <24777085+TrevorSchirmer@users.noreply.github.com> Co-authored-by: Keith Burzinski <kbx81x@gmail.com>
57 lines
1.7 KiB
Python
57 lines
1.7 KiB
Python
import esphome.codegen as cg
|
|
from esphome.components import select
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_BAUD_RATE, ENTITY_CATEGORY_CONFIG, ICON_THERMOMETER
|
|
|
|
from .. import CONF_LD2450_ID, LD2450Component, ld2450_ns
|
|
|
|
CONF_ZONE_TYPE = "zone_type"
|
|
|
|
BaudRateSelect = ld2450_ns.class_("BaudRateSelect", select.Select)
|
|
ZoneTypeSelect = ld2450_ns.class_("ZoneTypeSelect", select.Select)
|
|
|
|
CONFIG_SCHEMA = {
|
|
cv.GenerateID(CONF_LD2450_ID): cv.use_id(LD2450Component),
|
|
cv.Optional(CONF_BAUD_RATE): select.select_schema(
|
|
BaudRateSelect,
|
|
entity_category=ENTITY_CATEGORY_CONFIG,
|
|
icon=ICON_THERMOMETER,
|
|
),
|
|
cv.Optional(CONF_ZONE_TYPE): select.select_schema(
|
|
ZoneTypeSelect,
|
|
entity_category=ENTITY_CATEGORY_CONFIG,
|
|
icon=ICON_THERMOMETER,
|
|
),
|
|
}
|
|
|
|
|
|
async def to_code(config):
|
|
ld2450_component = await cg.get_variable(config[CONF_LD2450_ID])
|
|
if baud_rate_config := config.get(CONF_BAUD_RATE):
|
|
s = await select.new_select(
|
|
baud_rate_config,
|
|
options=[
|
|
"9600",
|
|
"19200",
|
|
"38400",
|
|
"57600",
|
|
"115200",
|
|
"230400",
|
|
"256000",
|
|
"460800",
|
|
],
|
|
)
|
|
await cg.register_parented(s, config[CONF_LD2450_ID])
|
|
cg.add(ld2450_component.set_baud_rate_select(s))
|
|
if zone_type_config := config.get(CONF_ZONE_TYPE):
|
|
s = await select.new_select(
|
|
zone_type_config,
|
|
options=[
|
|
"Disabled",
|
|
"Detection",
|
|
"Filter",
|
|
],
|
|
)
|
|
await cg.register_parented(s, config[CONF_LD2450_ID])
|
|
cg.add(ld2450_component.set_zone_type_select(s))
|