mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
176c712eeb
* Disable MQTT if not used * Lint
27 lines
979 B
Python
27 lines
979 B
Python
from esphomeyaml.components import text_sensor
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_ID, CONF_NAME
|
|
from esphomeyaml.cpp_generator import Pvariable
|
|
from esphomeyaml.cpp_helpers import setup_component
|
|
from esphomeyaml.cpp_types import App, Component
|
|
|
|
VersionTextSensor = text_sensor.text_sensor_ns.class_('VersionTextSensor',
|
|
text_sensor.TextSensor, Component)
|
|
|
|
PLATFORM_SCHEMA = cv.nameable(text_sensor.TEXT_SENSOR_PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(VersionTextSensor),
|
|
}).extend(cv.COMPONENT_SCHEMA.schema))
|
|
|
|
|
|
def to_code(config):
|
|
rhs = App.make_version_text_sensor(config[CONF_NAME])
|
|
sens = Pvariable(config[CONF_ID], rhs)
|
|
text_sensor.setup_text_sensor(sens, config)
|
|
setup_component(sens, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_VERSION_TEXT_SENSOR'
|
|
|
|
|
|
def to_hass_config(data, config):
|
|
return text_sensor.core_to_hass_config(data, config)
|