ESPHome
2022.6.2
|
#include <xpt2046.h>
Public Member Functions | |
void | set_area (int16_t x_min, int16_t x_max, int16_t y_min, int16_t y_max) |
Set the touch screen area where the button will detect the touch. More... | |
void | touch (int16_t x, int16_t y) |
void | release () |
![]() | |
BinarySensor () | |
void | add_on_state_callback (std::function< void(bool)> &&callback) |
Add a callback to be notified of state changes. More... | |
void | publish_state (bool state) |
Publish a new state to the front-end. More... | |
void | publish_initial_state (bool state) |
Publish the initial state, this will not make the callback manager send callbacks and is meant only for the initial state on boot. More... | |
void | set_device_class (const std::string &device_class) |
Manually set the Home Assistant device class (see binary_sensor::device_class) More... | |
std::string | get_device_class () |
Get the device class for this binary sensor, using the manual override if specified. More... | |
void | add_filter (Filter *filter) |
void | add_filters (const std::vector< Filter *> &filters) |
void | send_state_internal (bool state, bool is_initial) |
virtual bool | has_state () const |
Return whether this binary sensor has outputted a state. More... | |
virtual bool | is_status_binary_sensor () const |
virtual std::string | device_class () |
Override this to set the default device class. More... | |
![]() | |
EntityBase () | |
EntityBase (std::string name) | |
const std::string & | get_name () const |
void | set_name (const std::string &name) |
const std::string & | get_object_id () |
uint32_t | get_object_id_hash () |
bool | is_internal () const |
void | set_internal (bool internal) |
bool | is_disabled_by_default () const |
void | set_disabled_by_default (bool disabled_by_default) |
EntityCategory | get_entity_category () const |
void | set_entity_category (EntityCategory entity_category) |
const std::string & | get_icon () const |
void | set_icon (const std::string &name) |
Protected Attributes | |
int16_t | x_min_ |
int16_t | x_max_ |
int16_t | y_min_ |
int16_t | y_max_ |
bool | state_ {false} |
![]() | |
CallbackManager< void(bool)> | state_callback_ {} |
optional< std::string > | device_class_ {} |
Stores the override of the device class. More... | |
Filter * | filter_list_ {nullptr} |
bool | has_state_ {false} |
Deduplicator< bool > | publish_dedup_ |
![]() | |
std::string | name_ |
std::string | object_id_ |
std::string | icon_ |
uint32_t | object_id_hash_ |
bool | internal_ {false} |
bool | disabled_by_default_ {false} |
EntityCategory | entity_category_ {ENTITY_CATEGORY_NONE} |
Additional Inherited Members | |
![]() | |
bool | state |
The current reported state of the binary sensor. More... | |
![]() | |
virtual uint32_t | hash_base () |
The hash_base() function has been deprecated. More... | |
void | calc_object_id_ () |
void esphome::xpt2046::XPT2046Button::release | ( | ) |
Definition at line 209 of file xpt2046.cpp.
|
inline |
void esphome::xpt2046::XPT2046Button::touch | ( | int16_t | x, |
int16_t | y | ||
) |
Definition at line 198 of file xpt2046.cpp.
|
protected |