mirror of
https://github.com/esphome/esphome.git
synced 2024-11-10 09:17:46 +01:00
Exposing coordinates from touchscreen binary sensor (#3891)
This commit is contained in:
parent
45861456f1
commit
a8ff0a8913
1 changed files with 6 additions and 0 deletions
|
@ -23,6 +23,12 @@ class TouchscreenBinarySensor : public binary_sensor::BinarySensor,
|
||||||
this->y_min_ = y_min;
|
this->y_min_ = y_min;
|
||||||
this->y_max_ = y_max;
|
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; }
|
void set_page(display::DisplayPage *page) { this->page_ = page; }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue