ESPHome 2025.9.0-dev
Loading...
Searching...
No Matches
tt21100.cpp
Go to the documentation of this file.
1#include "tt21100.h"
4namespace esphome {
5namespace tt21100 {
7static const char *const TAG = "tt21100";
9static const uint8_t MAX_BUTTONS = 4;
10static const uint8_t MAX_TOUCH_POINTS = 5;
11static const uint8_t MAX_DATA_LEN = (7 + MAX_TOUCH_POINTS * 10); // 7 Header + (Points * 10 data bytes)
12
13struct TT21100ButtonReport {
14 uint16_t length; // Always 14 (0x000E)
15 uint8_t report_id; // Always 0x03
16 uint16_t timestamp; // Number in units of 100 us
17 uint8_t btn_value; // Only use bit 0..3
18 uint16_t btn_signal[MAX_BUTTONS];
19} __attribute__((packed));
20
21struct TT21100TouchRecord {
22 uint8_t : 5;
23 uint8_t touch_type : 3;
24 uint8_t tip : 1;
25 uint8_t event_id : 2;
26 uint8_t touch_id : 5;
27 uint16_t x;
28 uint16_t y;
29 uint8_t pressure;
30 uint16_t major_axis_length;
31 uint8_t orientation;
32} __attribute__((packed));
33
34struct TT21100TouchReport {
35 uint16_t length;
36 uint8_t report_id;
37 uint16_t timestamp;
38 uint8_t : 2;
39 uint8_t large_object : 1;
40 uint8_t record_num : 5;
41 uint8_t report_counter : 2;
42 uint8_t : 3;
43 uint8_t noise_effect : 3;
44 TT21100TouchRecord touch_record[MAX_TOUCH_POINTS];
45} __attribute__((packed));
46
48
50 // Register interrupt pin
51 if (this->interrupt_pin_ != nullptr) {
53 this->interrupt_pin_->setup();
55 }
56
57 // Perform reset if necessary
58 if (this->reset_pin_ != nullptr) {
59 this->reset_pin_->setup();
60 this->reset_();
61 }
62
63 // Update display dimensions if they were updated during display setup
64 if (this->display_ != nullptr) {
65 if (this->x_raw_max_ == this->x_raw_min_) {
66 this->x_raw_max_ = this->display_->get_native_width();
67 }
68 if (this->y_raw_max_ == this->y_raw_min_) {
69 this->y_raw_max_ = this->display_->get_native_height();
70 }
71 }
72
73 // Trigger initial read to activate the interrupt
74 this->store_.touched = true;
75}
76
78 // Read report length
79 uint16_t data_len;
80 this->read((uint8_t *) &data_len, sizeof(data_len));
81
82 // Read report data
83 uint8_t data[MAX_DATA_LEN];
84 if (data_len > 0 && data_len < sizeof(data)) {
85 this->read(data, data_len);
86
87 if (data_len == 14) {
88 // Button event
89 auto *report = (TT21100ButtonReport *) data;
90
91 ESP_LOGV(TAG, "Button report: Len=%d, ID=%d, Time=%5u, Value=[%u], Signal=[%04X][%04X][%04X][%04X]",
92 report->length, report->report_id, report->timestamp, report->btn_value, report->btn_signal[0],
93 report->btn_signal[1], report->btn_signal[2], report->btn_signal[3]);
94
95 for (uint8_t i = 0; i < 4; i++) {
96 for (auto *listener : this->button_listeners_)
97 listener->update_button(i, report->btn_signal[i]);
98 }
99
100 } else if (data_len >= 7) {
101 // Touch point event
102 auto *report = (TT21100TouchReport *) data;
103
104 ESP_LOGV(TAG,
105 "Touch report: Len=%d, ID=%d, Time=%5u, LargeObject=%u, RecordNum=%u, RecordCounter=%u, NoiseEffect=%u",
106 report->length, report->report_id, report->timestamp, report->large_object, report->record_num,
107 report->report_counter, report->noise_effect);
108
109 uint8_t touch_count = (data_len - (sizeof(*report) - sizeof(report->touch_record))) / sizeof(TT21100TouchRecord);
110
111 for (int i = 0; i < touch_count; i++) {
112 auto *touch = &report->touch_record[i];
113
114 ESP_LOGV(TAG,
115 "Touch %d: Type=%u, Tip=%u, EventId=%u, TouchId=%u, X=%u, Y=%u, Pressure=%u, MajorAxisLen=%u, "
116 "Orientation=%u",
117 i, touch->touch_type, touch->tip, touch->event_id, touch->touch_id, touch->x, touch->y,
118 touch->pressure, touch->major_axis_length, touch->orientation);
119
120 this->add_raw_touch_position_(touch->tip, touch->x, touch->y, touch->pressure);
121 }
122 }
123 }
124}
125
127 if (this->reset_pin_ != nullptr) {
128 this->reset_pin_->digital_write(false);
129 delay(10);
130 this->reset_pin_->digital_write(true);
131 delay(10);
132 }
133}
134
136 ESP_LOGCONFIG(TAG, "TT21100 Touchscreen:");
137 LOG_I2C_DEVICE(this);
138 LOG_PIN(" Interrupt Pin: ", this->interrupt_pin_);
139 LOG_PIN(" Reset Pin: ", this->reset_pin_);
140}
141
142} // namespace tt21100
143} // namespace esphome
virtual void pin_mode(gpio::Flags flags)=0
virtual void setup()=0
virtual void digital_write(bool value)=0
int get_native_width()
Get the native (original) width of the display in pixels.
Definition display.h:221
int get_native_height()
Get the native (original) height of the display in pixels.
Definition display.h:223
ErrorCode read(uint8_t *data, size_t len)
reads an array of bytes from the device using an I2CBus
Definition i2c.h:164
void attach_interrupt_(InternalGPIOPin *irq_pin, esphome::gpio::InterruptType type)
Call this function to send touch points to the on_touch listener and the binary_sensors.
void add_raw_touch_position_(uint8_t id, int16_t x_raw, int16_t y_raw, int16_t z_raw=0)
float get_setup_priority() const override
Definition tt21100.cpp:47
std::vector< TT21100ButtonListener * > button_listeners_
Definition tt21100.h:39
InternalGPIOPin * interrupt_pin_
Definition tt21100.h:36
struct @67::@68 __attribute__
@ INTERRUPT_FALLING_EDGE
Definition gpio.h:42
@ FLAG_PULLUP
Definition gpio.h:21
@ FLAG_INPUT
Definition gpio.h:18
const float HARDWARE
For components that deal with hardware and are very important like GPIO switch.
Definition component.cpp:49
Providing packet encoding functions for exchanging data with a remote host.
Definition a01nyub.cpp:7
void IRAM_ATTR HOT delay(uint32_t ms)
Definition core.cpp:29