40 lines
1.3 KiB
Python
40 lines
1.3 KiB
Python
from esphome import pins
|
|
import esphome.codegen as cg
|
|
from esphome.components import i2c, touchscreen
|
|
import esphome.config_validation as cv
|
|
from esphome.const import CONF_ID, CONF_INTERRUPT_PIN, CONF_RESET_PIN
|
|
|
|
from .. import tt21100_ns
|
|
|
|
DEPENDENCIES = ["i2c"]
|
|
|
|
TT21100Touchscreen = tt21100_ns.class_(
|
|
"TT21100Touchscreen",
|
|
touchscreen.Touchscreen,
|
|
i2c.I2CDevice,
|
|
)
|
|
TT21100ButtonListener = tt21100_ns.class_("TT21100ButtonListener")
|
|
|
|
CONFIG_SCHEMA = touchscreen.TOUCHSCREEN_SCHEMA.extend(
|
|
cv.Schema(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(TT21100Touchscreen),
|
|
cv.Optional(CONF_INTERRUPT_PIN): pins.internal_gpio_input_pin_schema,
|
|
cv.Optional(CONF_RESET_PIN): pins.gpio_output_pin_schema,
|
|
}
|
|
).extend(i2c.i2c_device_schema(0x24))
|
|
)
|
|
|
|
|
|
async def to_code(config):
|
|
var = cg.new_Pvariable(config[CONF_ID])
|
|
await touchscreen.register_touchscreen(var, config)
|
|
await i2c.register_i2c_device(var, config)
|
|
|
|
if CONF_INTERRUPT_PIN in config:
|
|
interrupt_pin = await cg.gpio_pin_expression(config[CONF_INTERRUPT_PIN])
|
|
cg.add(var.set_interrupt_pin(interrupt_pin))
|
|
|
|
if CONF_RESET_PIN in config:
|
|
rts_pin = await cg.gpio_pin_expression(config[CONF_RESET_PIN])
|
|
cg.add(var.set_reset_pin(rts_pin))
|