1
0
mirror of https://github.com/esphome/esphome.git synced 2025-10-30 06:33:51 +00:00

rename set_raw_touch_position_ to add_raw_touch_position_ (#5962)

This commit is contained in:
NP v/d Spek
2023-12-18 20:23:22 +01:00
committed by GitHub
parent d99598bba6
commit 8961e8ab32
9 changed files with 10 additions and 10 deletions

View File

@@ -94,7 +94,7 @@ class FT5x06Touchscreen : public touchscreen::Touchscreen, public i2c::I2CDevice
esph_log_d(TAG, "Read %X status, id: %d, pos %d/%d", status, id, x, y);
if (status == 0 || status == 2) {
this->set_raw_touch_position_(id, x, y);
this->add_raw_touch_position_(id, x, y);
}
}
}