We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Resistive touch screen XPT2026 has a function touch.setRotation(1); How can we do the same with capacitive FT6336U ?
The text was updated successfully, but these errors were encountered:
For the moment I solve it like that :
// X_Coord = tp.tp[0].x; // no flip // Y_Coord = tp.tp[0].y; // no flip
X_Coord = tp.tp[0].y; // X <-> Y flip Y_Coord = tp.tp[0].x; // X <-> Y flip X_Coord = 320 - X_Coord; //180 degrees flip X axis //Y_Coord = 240 - Y_Coord; //180 degrees flip Y axis
Sorry, something went wrong.
This library does not provide setRotaion function. So you need to calculate rotation by yourself
No branches or pull requests
Resistive touch screen XPT2026 has a function touch.setRotation(1);
How can we do the same with capacitive FT6336U ?
The text was updated successfully, but these errors were encountered: