2018-04-07 01:23:03 +02:00
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
import esphomeyaml.config_validation as cv
|
|
|
|
from esphomeyaml import pins
|
|
|
|
from esphomeyaml.const import CONF_ENABLE_TIME, CONF_ID, CONF_KEEP_ON_TIME, CONF_PIN
|
2018-05-20 12:41:52 +02:00
|
|
|
from esphomeyaml.helpers import App, Pvariable, add, esphomelib_ns, gpio_output_pin_expression
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
POWER_SUPPLY_SCHEMA = cv.REQUIRED_ID_SCHEMA.extend({
|
|
|
|
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,
|
2018-04-07 01:23:03 +02:00
|
|
|
})
|
|
|
|
|
|
|
|
CONFIG_SCHEMA = vol.All(cv.ensure_list, [POWER_SUPPLY_SCHEMA])
|
|
|
|
|
2018-05-20 12:41:52 +02:00
|
|
|
PowerSupplyComponent = esphomelib_ns.PowerSupplyComponent
|
|
|
|
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
def to_code(config):
|
|
|
|
for conf in config:
|
2018-05-20 12:41:52 +02:00
|
|
|
rhs = App.make_power_supply(gpio_output_pin_expression(conf[CONF_PIN]))
|
|
|
|
psu = Pvariable(PowerSupplyComponent, conf[CONF_ID], rhs)
|
2018-04-07 01:23:03 +02:00
|
|
|
if CONF_ENABLE_TIME in conf:
|
|
|
|
add(psu.set_enable_time(conf[CONF_ENABLE_TIME]))
|
|
|
|
if CONF_KEEP_ON_TIME in conf:
|
|
|
|
add(psu.set_keep_on_time(conf[CONF_KEEP_ON_TIME]))
|
2018-04-18 18:43:13 +02:00
|
|
|
|
|
|
|
|
2018-05-06 15:56:12 +02:00
|
|
|
BUILD_FLAGS = '-DUSE_OUTPUT'
|