ESPHome  2023.11.6
Public Member Functions | Protected Attributes
esphome::lilygo_t5_47::LilygoT547Touchscreen Class Reference

#include <lilygo_t5_47_touchscreen.h>

Inheritance diagram for esphome::lilygo_t5_47::LilygoT547Touchscreen:
esphome::touchscreen::Touchscreen esphome::Component esphome::i2c::I2CDevice

Public Member Functions

void setup () override
 
void loop () override
 
void dump_config () override
 
void set_interrupt_pin (InternalGPIOPin *pin)
 
- Public Member Functions inherited from esphome::touchscreen::Touchscreen
void set_display (display::Display *display)
 
display::Displayget_display () const
 
Trigger< TouchPoint > * get_touch_trigger ()
 
void register_listener (TouchListener *listener)
 
- Public Member Functions inherited from esphome::Component
virtual float get_setup_priority () const
 priority of setup(). More...
 
float get_actual_setup_priority () const
 
void set_setup_priority (float priority)
 
virtual float get_loop_priority () const
 priority of loop(). More...
 
void call ()
 
virtual void on_shutdown ()
 
virtual void on_safe_shutdown ()
 
uint32_t get_component_state () const
 
virtual void mark_failed ()
 Mark this component as failed. More...
 
bool is_failed ()
 
bool is_ready ()
 
virtual bool can_proceed ()
 
bool status_has_warning ()
 
bool status_has_error ()
 
void status_set_warning ()
 
void status_set_error ()
 
void status_clear_warning ()
 
void status_clear_error ()
 
void status_momentary_warning (const std::string &name, uint32_t length=5000)
 
void status_momentary_error (const std::string &name, uint32_t length=5000)
 
bool has_overridden_loop () const
 
void set_component_source (const char *source)
 Set where this component was loaded from for some debug messages. More...
 
const char * get_component_source () const
 Get the integration where this component was declared as a string. More...
 
- Public Member Functions inherited from esphome::i2c::I2CDevice
 I2CDevice ()=default
 
void set_i2c_address (uint8_t address)
 
void set_i2c_bus (I2CBus *bus)
 
I2CRegister reg (uint8_t a_register)
 
I2CRegister16 reg16 (uint16_t a_register)
 
ErrorCode read (uint8_t *data, size_t len)
 
ErrorCode read_register (uint8_t a_register, uint8_t *data, size_t len, bool stop=true)
 
ErrorCode read_register16 (uint16_t a_register, uint8_t *data, size_t len, bool stop=true)
 
ErrorCode write (const uint8_t *data, uint8_t len, bool stop=true)
 
ErrorCode write_register (uint8_t a_register, const uint8_t *data, size_t len, bool stop=true)
 
ErrorCode write_register16 (uint16_t a_register, const uint8_t *data, size_t len, bool stop=true)
 
bool read_bytes (uint8_t a_register, uint8_t *data, uint8_t len)
 
bool read_bytes_raw (uint8_t *data, uint8_t len)
 
template<size_t N>
optional< std::array< uint8_t, N > > read_bytes (uint8_t a_register)
 
template<size_t N>
optional< std::array< uint8_t, N > > read_bytes_raw ()
 
bool read_bytes_16 (uint8_t a_register, uint16_t *data, uint8_t len)
 
bool read_byte (uint8_t a_register, uint8_t *data, bool stop=true)
 
optional< uint8_t > read_byte (uint8_t a_register)
 
bool read_byte_16 (uint8_t a_register, uint16_t *data)
 
bool write_bytes (uint8_t a_register, const uint8_t *data, uint8_t len, bool stop=true)
 
bool write_bytes (uint8_t a_register, const std::vector< uint8_t > &data)
 
template<size_t N>
bool write_bytes (uint8_t a_register, const std::array< uint8_t, N > &data)
 
bool write_bytes_16 (uint8_t a_register, const uint16_t *data, uint8_t len)
 
bool write_byte (uint8_t a_register, uint8_t data, bool stop=true)
 
bool write_byte_16 (uint8_t a_register, uint16_t data)
 

Protected Attributes

InternalGPIOPininterrupt_pin_
 
Store store_
 
- Protected Attributes inherited from esphome::touchscreen::Touchscreen
uint16_t display_width_
 
uint16_t display_height_
 
display::Displaydisplay_
 
TouchRotation rotation_
 
Trigger< TouchPointtouch_trigger_
 
std::vector< TouchListener * > touch_listeners_
 
- Protected Attributes inherited from esphome::Component
uint32_t component_state_ {0x0000}
 State of this component. More...
 
float setup_priority_override_ {NAN}
 
const char * component_source_ {nullptr}
 
- Protected Attributes inherited from esphome::i2c::I2CDevice
uint8_t address_ {0x00}
 
I2CBusbus_ {nullptr}
 

Additional Inherited Members

- Protected Member Functions inherited from esphome::touchscreen::Touchscreen
void send_touch_ (TouchPoint tp)
 Call this function to send touch points to the on_touch listener and the binary_sensors. More...
 
- Protected Member Functions inherited from esphome::Component
virtual void call_loop ()
 
virtual void call_setup ()
 
virtual void call_dump_config ()
 
void set_interval (const std::string &name, uint32_t interval, std::function< void()> &&f)
 Set an interval function with a unique name. More...
 
void set_interval (uint32_t interval, std::function< void()> &&f)
 
bool cancel_interval (const std::string &name)
 Cancel an interval function. More...
 
void set_retry (const std::string &name, uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f)
 Set an retry function with a unique name. More...
 
void set_retry (uint32_t initial_wait_time, uint8_t max_attempts, std::function< RetryResult(uint8_t)> &&f, float backoff_increase_factor=1.0f)
 
bool cancel_retry (const std::string &name)
 Cancel a retry function. More...
 
void set_timeout (const std::string &name, uint32_t timeout, std::function< void()> &&f)
 Set a timeout function with a unique name. More...
 
void set_timeout (uint32_t timeout, std::function< void()> &&f)
 
bool cancel_timeout (const std::string &name)
 Cancel a timeout function. More...
 
void defer (const std::string &name, std::function< void()> &&f)
 Defer a callback to the next loop() call. More...
 
void defer (std::function< void()> &&f)
 Defer a callback to the next loop() call. More...
 
bool cancel_defer (const std::string &name)
 Cancel a defer callback using the specified name, name must not be empty. More...
 

Detailed Description

Definition at line 21 of file lilygo_t5_47_touchscreen.h.

Member Function Documentation

◆ dump_config()

void esphome::lilygo_t5_47::LilygoT547Touchscreen::dump_config ( )
overridevirtual

Reimplemented from esphome::Component.

Definition at line 173 of file lilygo_t5_47_touchscreen.cpp.

◆ loop()

void esphome::lilygo_t5_47::LilygoT547Touchscreen::loop ( )
overridevirtual

Reimplemented from esphome::Component.

Definition at line 46 of file lilygo_t5_47_touchscreen.cpp.

◆ set_interrupt_pin()

void esphome::lilygo_t5_47::LilygoT547Touchscreen::set_interrupt_pin ( InternalGPIOPin pin)
inline

Definition at line 27 of file lilygo_t5_47_touchscreen.h.

◆ setup()

void esphome::lilygo_t5_47::LilygoT547Touchscreen::setup ( )
overridevirtual

Reimplemented from esphome::Component.

Definition at line 28 of file lilygo_t5_47_touchscreen.cpp.

Field Documentation

◆ interrupt_pin_

InternalGPIOPin* esphome::lilygo_t5_47::LilygoT547Touchscreen::interrupt_pin_
protected

Definition at line 30 of file lilygo_t5_47_touchscreen.h.

◆ store_

Store esphome::lilygo_t5_47::LilygoT547Touchscreen::store_
protected

Definition at line 31 of file lilygo_t5_47_touchscreen.h.


The documentation for this class was generated from the following files: