mirror of
https://github.com/esphome/esphome.git
synced 2025-11-16 06:45:48 +00:00
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
import esphome.codegen as cg
|
|
import esphome.config_validation as cv
|
|
from esphome.components import text_sensor
|
|
from esphome.const import (
|
|
ENTITY_CATEGORY_NONE,
|
|
ENTITY_CATEGORY_DIAGNOSTIC,
|
|
CONF_ID,
|
|
)
|
|
|
|
from . import EzoPMP
|
|
|
|
DEPENDENCIES = ["ezo_pmp"]
|
|
|
|
CONF_DOSING_MODE = "dosing_mode"
|
|
CONF_CALIBRATION_STATUS = "calibration_status"
|
|
|
|
CONFIG_SCHEMA = cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.use_id(EzoPMP),
|
|
cv.Optional(CONF_DOSING_MODE): text_sensor.text_sensor_schema(
|
|
entity_category=ENTITY_CATEGORY_NONE,
|
|
),
|
|
cv.Optional(CONF_CALIBRATION_STATUS): text_sensor.text_sensor_schema(
|
|
entity_category=ENTITY_CATEGORY_DIAGNOSTIC,
|
|
),
|
|
}
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
parent = await cg.get_variable(config[CONF_ID])
|
|
|
|
if CONF_DOSING_MODE in config:
|
|
sens = await text_sensor.new_text_sensor(config[CONF_DOSING_MODE])
|
|
cg.add(parent.set_dosing_mode(sens))
|
|
|
|
if CONF_CALIBRATION_STATUS in config:
|
|
sens = await text_sensor.new_text_sensor(config[CONF_CALIBRATION_STATUS])
|
|
cg.add(parent.set_calibration_status(sens))
|