2018-04-07 01:23:03 +02:00
|
|
|
import voluptuous as vol
|
|
|
|
|
|
|
|
from esphomeyaml import pins
|
|
|
|
from esphomeyaml.components import output
|
|
|
|
from esphomeyaml.const import CONF_ID, CONF_PIN
|
2018-05-17 19:57:55 +02:00
|
|
|
from esphomeyaml.helpers import App, Pvariable, gpio_output_pin_expression
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
PLATFORM_SCHEMA = output.PLATFORM_SCHEMA.extend({
|
|
|
|
vol.Required(CONF_PIN): pins.GPIO_OUTPUT_PIN_SCHEMA,
|
2018-05-20 12:41:52 +02:00
|
|
|
}).extend(output.BINARY_OUTPUT_SCHEMA.schema)
|
|
|
|
|
|
|
|
GPIOBinaryOutputComponent = output.output_ns.GPIOBinaryOutputComponent
|
2018-04-07 01:23:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
def to_code(config):
|
2018-05-17 19:57:55 +02:00
|
|
|
pin = gpio_output_pin_expression(config[CONF_PIN])
|
2018-04-07 01:23:03 +02:00
|
|
|
rhs = App.make_gpio_output(pin)
|
2018-05-20 12:41:52 +02:00
|
|
|
gpio = Pvariable(GPIOBinaryOutputComponent, config[CONF_ID], rhs)
|
2018-04-07 01:23:03 +02:00
|
|
|
output.setup_output_platform(gpio, config)
|
2018-04-18 18:43:13 +02:00
|
|
|
|
|
|
|
|
2018-05-06 15:56:12 +02:00
|
|
|
BUILD_FLAGS = '-DUSE_GPIO_OUTPUT'
|