1
0
mirror of https://github.com/esphome/esphome.git synced 2024-10-07 11:20:58 +01:00
esphome/esphomeyaml/components/ir_transmitter.py

29 lines
1010 B
Python
Raw Normal View History

2018-04-07 00:23:03 +01:00
import voluptuous as vol
import esphomeyaml.config_validation as cv
from esphomeyaml import pins
2018-05-20 11:41:52 +01:00
from esphomeyaml.components import switch
2018-05-14 10:50:56 +01:00
from esphomeyaml.const import CONF_CARRIER_DUTY_PERCENT, CONF_ID, CONF_PIN
2018-05-17 18:57:55 +01:00
from esphomeyaml.helpers import App, Pvariable, gpio_output_pin_expression
2018-04-07 00:23:03 +01:00
2018-06-02 21:22:20 +01:00
IRTransmitterComponent = switch.switch_ns.namespace('IRTransmitterComponent')
2018-04-07 00:23:03 +01:00
CONFIG_SCHEMA = vol.All(cv.ensure_list, [vol.Schema({
2018-06-02 21:22:20 +01:00
cv.GenerateID(): cv.declare_variable_id(IRTransmitterComponent),
2018-06-06 07:55:53 +01:00
vol.Required(CONF_PIN): pins.gpio_output_pin_schema,
2018-05-14 10:50:56 +01:00
vol.Optional(CONF_CARRIER_DUTY_PERCENT): vol.All(vol.Coerce(int),
2018-05-14 16:34:43 +01:00
vol.Range(min=1, max=100)),
2018-04-07 00:23:03 +01:00
})])
def to_code(config):
for conf in config:
2018-06-02 21:22:20 +01:00
pin = None
for pin in gpio_output_pin_expression(conf[CONF_PIN]):
yield
2018-04-07 00:23:03 +01:00
rhs = App.make_ir_transmitter(pin, conf.get(CONF_CARRIER_DUTY_PERCENT))
2018-06-02 21:22:20 +01:00
Pvariable(conf[CONF_ID], rhs)
2018-05-06 14:56:12 +01:00
BUILD_FLAGS = '-DUSE_IR_TRANSMITTER'