mirror of
https://github.com/esphome/esphome.git
synced 2025-04-14 14:50:32 +01:00
37 lines
1.1 KiB
Python
37 lines
1.1 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 axs15231_ns
|
|
|
|
AXS15231Touchscreen = axs15231_ns.class_(
|
|
"AXS15231Touchscreen",
|
|
touchscreen.Touchscreen,
|
|
i2c.I2CDevice,
|
|
)
|
|
|
|
CONFIG_SCHEMA = (
|
|
touchscreen.touchscreen_schema("50ms")
|
|
.extend(
|
|
{
|
|
cv.GenerateID(): cv.declare_id(AXS15231Touchscreen),
|
|
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(0x3B))
|
|
)
|
|
|
|
|
|
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 interrupt_pin := config.get(CONF_INTERRUPT_PIN):
|
|
cg.add(var.set_interrupt_pin(await cg.gpio_pin_expression(interrupt_pin)))
|
|
if reset_pin := config.get(CONF_RESET_PIN):
|
|
cg.add(var.set_reset_pin(await cg.gpio_pin_expression(reset_pin)))
|