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