mirror of
https://github.com/esphome/esphome.git
synced 2025-01-20 04:44:05 +00:00
7c7032c59e
* Implement custom sensor platform * Update * Ethernet * Lint * Fix * Login page * Rename cookie secret * Update manifest * Update cookie check logic * Favicon * Fix * Favicon manifest * Fix * Fix * Fix * Use hostname * Message * Temporary commit for screenshot * Automatic board selection * Undo temporary commit * Update esphomeyaml-edge * In-dashboard editing and hosting files locally * Update esphomeyaml-edge * Better ANSI color escaping * Message * Lint * Download Efficiency * Fix gitlab * Fix * Rename extra_libraries to libraries * Add example * Update README.md * Update README.md * Update README.md * HassIO -> Hass.io * Updates * Add update available notice * Update * Fix substitutions * Better error message * Re-do dashboard ANSI colors * Only include FastLED if user says so * Autoscroll logs * Remove old checks * Use safer RedirectText * Improvements * Fix * Use enviornment variable * Use http://hassio/host/info * Fix conditions * Update platformio versions * Revert "Use enviornment variable" This reverts commit 7f038eb5d26df72f76ea9ae76774e2cec1fd7f59. * Fix * README update * Temp * Better invalid config messages * Platformio debug * Improve error messages * Debug * Remove debug * Multi Conf * Update * Better paths * Remove unused * Fixes * Lint * lib_ignore * Try fix platformio colors * Fix dashboard scrolling * Revert * Lint * Revert
68 lines
2.7 KiB
Python
68 lines
2.7 KiB
Python
import voluptuous as vol
|
|
|
|
from esphomeyaml.components import sensor, uart
|
|
from esphomeyaml.components.uart import UARTComponent
|
|
import esphomeyaml.config_validation as cv
|
|
from esphomeyaml.const import CONF_CURRENT, CONF_ID, CONF_NAME, CONF_POWER, CONF_UART_ID, \
|
|
CONF_UPDATE_INTERVAL, CONF_VOLTAGE
|
|
from esphomeyaml.cpp_generator import Pvariable, get_variable
|
|
from esphomeyaml.cpp_helpers import setup_component
|
|
from esphomeyaml.cpp_types import App, PollingComponent
|
|
|
|
DEPENDENCIES = ['uart']
|
|
|
|
CSE7766Component = sensor.sensor_ns.class_('CSE7766Component', PollingComponent, uart.UARTDevice)
|
|
CSE7766VoltageSensor = sensor.sensor_ns.class_('CSE7766VoltageSensor',
|
|
sensor.EmptySensor)
|
|
CSE7766CurrentSensor = sensor.sensor_ns.class_('CSE7766CurrentSensor',
|
|
sensor.EmptySensor)
|
|
CSE7766PowerSensor = sensor.sensor_ns.class_('CSE7766PowerSensor',
|
|
sensor.EmptySensor)
|
|
|
|
PLATFORM_SCHEMA = vol.All(sensor.PLATFORM_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(CSE7766Component),
|
|
cv.GenerateID(CONF_UART_ID): cv.use_variable_id(UARTComponent),
|
|
|
|
vol.Optional(CONF_VOLTAGE): cv.nameable(sensor.SENSOR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(CSE7766VoltageSensor),
|
|
})),
|
|
vol.Optional(CONF_CURRENT): cv.nameable(sensor.SENSOR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(CSE7766CurrentSensor),
|
|
})),
|
|
vol.Optional(CONF_POWER): cv.nameable(sensor.SENSOR_SCHEMA.extend({
|
|
cv.GenerateID(): cv.declare_variable_id(CSE7766PowerSensor),
|
|
})),
|
|
vol.Optional(CONF_UPDATE_INTERVAL): cv.update_interval,
|
|
}).extend(cv.COMPONENT_SCHEMA.schema), cv.has_at_least_one_key(CONF_VOLTAGE, CONF_CURRENT,
|
|
CONF_POWER))
|
|
|
|
|
|
def to_code(config):
|
|
for uart_ in get_variable(config[CONF_UART_ID]):
|
|
yield
|
|
|
|
rhs = App.make_cse7766(uart_, config.get(CONF_UPDATE_INTERVAL))
|
|
cse = Pvariable(config[CONF_ID], rhs)
|
|
|
|
if CONF_VOLTAGE in config:
|
|
conf = config[CONF_VOLTAGE]
|
|
sensor.register_sensor(cse.make_voltage_sensor(conf[CONF_NAME]), conf)
|
|
if CONF_CURRENT in config:
|
|
conf = config[CONF_CURRENT]
|
|
sensor.register_sensor(cse.make_current_sensor(conf[CONF_NAME]), conf)
|
|
if CONF_POWER in config:
|
|
conf = config[CONF_POWER]
|
|
sensor.register_sensor(cse.make_power_sensor(conf[CONF_NAME]), conf)
|
|
setup_component(cse, config)
|
|
|
|
|
|
BUILD_FLAGS = '-DUSE_CSE7766'
|
|
|
|
|
|
def to_hass_config(data, config):
|
|
ret = []
|
|
for key in (CONF_VOLTAGE, CONF_CURRENT, CONF_POWER):
|
|
if key in config:
|
|
ret.append(sensor.core_to_hass_config(data, config[key]))
|
|
return ret
|