ESPHome 2026.6.0-dev
Loading...
Searching...
No Matches
gt911_touchscreen.h
Go to the documentation of this file.
1#pragma once
2
6#include "esphome/core/hal.h"
7
8namespace esphome::gt911 {
9
11 public:
12 virtual void update_button(uint8_t index, bool state) = 0;
13};
14
16 public:
28 void setup() override;
29 void dump_config() override;
30 bool can_proceed() override { return this->setup_done_; }
31
33 void set_interrupt_pin(GPIOPin *pin) { this->interrupt_pin_ = pin; }
34
35 void set_reset_pin(GPIOPin *pin) { this->reset_pin_ = pin; }
36 void register_button_listener(GT911ButtonListener *listener) { this->button_listeners_.push_back(listener); }
37
38 protected:
39 void update_touches() override;
40
49 void setup_internal_();
51 bool setup_done_{false};
52
55 std::vector<GT911ButtonListener *> button_listeners_;
56 uint8_t button_state_{0xFF}; // last button state. Initial FF guarantees first update.
57};
58
59} // namespace esphome::gt911
virtual void update_button(uint8_t index, bool state)=0
void register_button_listener(GT911ButtonListener *listener)
void setup_internal_()
Perform the internal setup routine for the GT911 touchscreen.
void set_interrupt_pin(GPIOPin *pin)
Set a interrupt pin (supports hardware interrupts or expander connected).
void setup() override
Initialize the GT911 touchscreen.
std::vector< GT911ButtonListener * > button_listeners_
bool setup_done_
True if the touchscreen setup has completed successfully.
This Class provides the methods to read/write bytes from/to an i2c device.
Definition i2c.h:132
bool state
Definition fan.h:2