mirror of
https://github.com/Threnklyn/esphome-dev.git
synced 2026-05-19 04:33:27 +02:00
24 lines
698 B
Python
24 lines
698 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']
|
|
AUTO_LOAD = ['binary_sensor']
|
|
|
|
CONF_TTP229_ID = 'ttp229_id'
|
|
ttp229_lsf_ns = cg.esphome_ns.namespace('ttp229_lsf')
|
|
|
|
TTP229LSFComponent = ttp229_lsf_ns.class_('TTP229LSFComponent', cg.Component, i2c.I2CDevice)
|
|
|
|
MULTI_CONF = True
|
|
CONFIG_SCHEMA = cv.Schema({
|
|
cv.GenerateID(): cv.declare_id(TTP229LSFComponent),
|
|
}).extend(cv.COMPONENT_SCHEMA).extend(i2c.i2c_device_schema(0x57))
|
|
|
|
|
|
def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
yield cg.register_component(var, config)
|
|
yield i2c.register_i2c_device(var, config)
|