esphome/esphomeyaml/components/power_supply.py

37 lines
1.2 KiB
Python
Raw Normal View History

2018-04-07 01:23:03 +02:00
import voluptuous as vol
from esphomeyaml import pins
2019-01-06 19:38:23 +01:00
import esphomeyaml.config_validation as cv
2018-04-07 01:23:03 +02:00
from esphomeyaml.const import CONF_ENABLE_TIME, CONF_ID, CONF_KEEP_ON_TIME, CONF_PIN
2019-01-06 19:38:23 +01:00
from esphomeyaml.cpp_generator import Pvariable, add
from esphomeyaml.cpp_helpers import gpio_output_pin_expression, setup_component
from esphomeyaml.cpp_types import App, Component, esphomelib_ns
2018-04-07 01:23:03 +02:00
PowerSupplyComponent = esphomelib_ns.class_('PowerSupplyComponent', Component)
2018-06-02 22:22:20 +02:00
2019-01-06 19:38:23 +01:00
MULTI_CONF = True
CONFIG_SCHEMA = vol.Schema({
2018-06-02 22:22:20 +02:00
vol.Required(CONF_ID): cv.declare_variable_id(PowerSupplyComponent),
2018-06-06 08:55:53 +02:00
vol.Required(CONF_PIN): pins.gpio_output_pin_schema,
2018-05-14 11:50:56 +02:00
vol.Optional(CONF_ENABLE_TIME): cv.positive_time_period_milliseconds,
vol.Optional(CONF_KEEP_ON_TIME): cv.positive_time_period_milliseconds,
}).extend(cv.COMPONENT_SCHEMA.schema)
2018-04-07 01:23:03 +02:00
def to_code(config):
2019-01-06 19:38:23 +01:00
for pin in gpio_output_pin_expression(config[CONF_PIN]):
yield
rhs = App.make_power_supply(pin)
psu = Pvariable(config[CONF_ID], rhs)
if CONF_ENABLE_TIME in config:
add(psu.set_enable_time(config[CONF_ENABLE_TIME]))
if CONF_KEEP_ON_TIME in config:
add(psu.set_keep_on_time(config[CONF_KEEP_ON_TIME]))
setup_component(psu, config)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_OUTPUT'