Exposing coordinates from touchscreen binary sensor (#3891)

This commit is contained in:
Gustavo Ambrozio 2022-10-10 16:22:13 -07:00 committed by GitHub
parent 45861456f1
commit a8ff0a8913
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -23,6 +23,12 @@ class TouchscreenBinarySensor : public binary_sensor::BinarySensor,
this->y_min_ = y_min;
this->y_max_ = y_max;
}
int16_t get_x_min() { return this->x_min_; }
int16_t get_x_max() { return this->x_max_; }
int16_t get_y_min() { return this->y_min_; }
int16_t get_y_max() { return this->y_max_; }
int16_t get_width() { return this->x_max_ - this->x_min_; }
int16_t get_height() { return this->y_max_ - this->y_min_; }
void set_page(display::DisplayPage *page) { this->page_ = page; }