mirror of
https://github.com/ByteWelder/Tactility.git
synced 2026-02-18 19:03:16 +00:00
38 lines
1.3 KiB
C++
38 lines
1.3 KiB
C++
#include "Axs5106Touch.h"
|
|
|
|
#include <esp_lcd_touch_axs5106.h>
|
|
#include <esp_err.h>
|
|
|
|
constexpr auto* TAG = "AXS5106";
|
|
|
|
bool Axs5106Touch::createIoHandle(esp_lcd_panel_io_handle_t& outHandle) {
|
|
esp_lcd_panel_io_i2c_config_t io_config = ESP_LCD_TOUCH_IO_I2C_AXS5106_CONFIG();
|
|
return esp_lcd_new_panel_io_i2c(configuration->port, &io_config, &outHandle) == ESP_OK;
|
|
}
|
|
|
|
bool Axs5106Touch::createTouchHandle(esp_lcd_panel_io_handle_t ioHandle, const esp_lcd_touch_config_t& configuration, esp_lcd_touch_handle_t& panelHandle) {
|
|
return esp_lcd_touch_new_i2c_axs5106(ioHandle, &configuration, &panelHandle) == ESP_OK;
|
|
}
|
|
|
|
esp_lcd_touch_config_t Axs5106Touch::createEspLcdTouchConfig() {
|
|
return {
|
|
.x_max = configuration->xMax,
|
|
.y_max = configuration->yMax,
|
|
.rst_gpio_num = configuration->pinReset,
|
|
.int_gpio_num = configuration->pinInterrupt,
|
|
.levels = {
|
|
.reset = configuration->pinResetLevel,
|
|
.interrupt = configuration->pinInterruptLevel,
|
|
},
|
|
.flags = {
|
|
.swap_xy = configuration->swapXy,
|
|
.mirror_x = configuration->mirrorX,
|
|
.mirror_y = configuration->mirrorY,
|
|
},
|
|
.process_coordinates = nullptr,
|
|
.interrupt_callback = nullptr,
|
|
.user_data = nullptr,
|
|
.driver_data = nullptr
|
|
};
|
|
}
|