mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
35 lines
918 B
Python
35 lines
918 B
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import text_sensor
|
|
from esphome.const import CONF_STATUS
|
|
from . import DalyBmsComponent, CONF_BMS_DALY_ID
|
|
|
|
ICON_CAR_BATTERY = "mdi:car-battery"
|
|
|
|
TYPES = [
|
|
CONF_STATUS,
|
|
]
|
|
|
|
CONFIG_SCHEMA = cv.All(
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(CONF_BMS_DALY_ID): cv.use_id(DalyBmsComponent),
|
|
cv.Optional(CONF_STATUS): text_sensor.text_sensor_schema(
|
|
icon=ICON_CAR_BATTERY
|
|
),
|
|
}
|
|
).extend(cv.COMPONENT_SCHEMA)
|
|
)
|
|
|
|
|
|
async def setup_conf(config, key, hub):
|
|
if key in config:
|
|
conf = config[key]
|
|
sens = await text_sensor.new_text_sensor(conf)
|
|
cg.add(getattr(hub, f"set_{key}_text_sensor")(sens))
|
|
|
|
|
|
async def to_code(config):
|
|
hub = await cg.get_variable(config[CONF_BMS_DALY_ID])
|
|
for key in TYPES:
|
|
await setup_conf(config, key, hub)
|