mirror of
https://github.com/esphome/esphome.git
synced 2024-12-02 11:44:13 +01:00
21 lines
626 B
Python
21 lines
626 B
Python
|
import esphome.codegen as cg
|
||
|
import esphome.config_validation as cv
|
||
|
from esphome.components import i2c
|
||
|
from esphome.const import CONF_ID
|
||
|
|
||
|
DEPENDENCIES = ['i2c']
|
||
|
MULTI_CONF = True
|
||
|
|
||
|
tlc59208f_ns = cg.esphome_ns.namespace('tlc59208f')
|
||
|
TLC59208FOutput = tlc59208f_ns.class_('TLC59208FOutput', cg.Component, i2c.I2CDevice)
|
||
|
|
||
|
CONFIG_SCHEMA = cv.Schema({
|
||
|
cv.GenerateID(): cv.declare_id(TLC59208FOutput),
|
||
|
}).extend(cv.COMPONENT_SCHEMA).extend(i2c.i2c_device_schema(0x20))
|
||
|
|
||
|
|
||
|
def to_code(config):
|
||
|
var = cg.new_Pvariable(config[CONF_ID])
|
||
|
yield cg.register_component(var, config)
|
||
|
yield i2c.register_i2c_device(var, config)
|