esphome/esphomeyaml/components/ir_transmitter.py

27 lines
984 B
Python
Raw Normal View History

2018-04-07 01:23:03 +02:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml import pins
2018-05-20 12:41:52 +02:00
from esphomeyaml.components import switch
2018-05-14 11:50:56 +02:00
from esphomeyaml.const import CONF_CARRIER_DUTY_PERCENT, 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
CONFIG_SCHEMA = vol.All(cv.ensure_list, [vol.Schema({
cv.GenerateID('ir_transmitter'): cv.register_variable_id,
vol.Required(CONF_PIN): pins.GPIO_OUTPUT_PIN_SCHEMA,
2018-05-14 11:50:56 +02:00
vol.Optional(CONF_CARRIER_DUTY_PERCENT): vol.All(vol.Coerce(int),
2018-05-14 17:34:43 +02:00
vol.Range(min=1, max=100)),
2018-04-07 01:23:03 +02:00
})])
2018-05-20 12:41:52 +02:00
IRTransmitterComponent = switch.switch_ns.namespace('IRTransmitterComponent')
2018-04-07 01:23:03 +02:00
def to_code(config):
for conf in config:
2018-05-17 19:57:55 +02:00
pin = gpio_output_pin_expression(conf[CONF_PIN])
2018-04-07 01:23:03 +02:00
rhs = App.make_ir_transmitter(pin, conf.get(CONF_CARRIER_DUTY_PERCENT))
2018-05-20 12:41:52 +02:00
Pvariable(IRTransmitterComponent, conf[CONF_ID], rhs)
2018-05-06 15:56:12 +02:00
BUILD_FLAGS = '-DUSE_IR_TRANSMITTER'