added FT6206 flip
This commit is contained in:
@@ -17,9 +17,13 @@ FT6206::FT6206() { touches = 0; }
|
||||
@returns True if an FT6206 is found, false on any failure
|
||||
*/
|
||||
/**************************************************************************/
|
||||
bool FT6206::begin(uint8_t thresh) {
|
||||
Wire.begin();
|
||||
// bool begin(uint8_t thresh = FT62XX_DEFAULT_THRESHOLD, uint16_t width, uint16_t height, bool flip );
|
||||
|
||||
bool FT6206::begin(uint16_t width, uint16_t height, bool flip, uint8_t thresh) {
|
||||
Wire.begin();
|
||||
_width = width;
|
||||
_height = height;
|
||||
_flip = flip;
|
||||
#ifdef FT6206_DEBUG
|
||||
Serial.print("Vend ID: 0x");
|
||||
Serial.println(readRegister8(FT62XX_REG_VENDID), HEX);
|
||||
@@ -86,7 +90,14 @@ TS_Point FT6206::getPoint(uint8_t n) {
|
||||
if ((touches == 0) || (n > 1)) {
|
||||
return TS_Point(0, 0, 0);
|
||||
} else {
|
||||
return TS_Point(touchX[n], touchY[n], 1);
|
||||
if(_flip)
|
||||
{
|
||||
return TS_Point(_width - touchX[n], _height - touchY[n], 1);
|
||||
}
|
||||
else
|
||||
{
|
||||
return TS_Point(touchX[n], touchY[n], 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user