本文整理汇总了C++中TouchButton::ProcessXY方法的典型用法代码示例。如果您正苦于以下问题:C++ TouchButton::ProcessXY方法的具体用法?C++ TouchButton::ProcessXY怎么用?C++ TouchButton::ProcessXY使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TouchButton
的用法示例。
在下文中一共展示了TouchButton::ProcessXY方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: getTouch
void DisplayClass::getTouch()
{
u8 i = 0;
TouchButton *pTryButton;
pTryButton = pDispButtons;
TouchedButtonIndex = END_BUT; // Use large value for non-index indication
HeldButtonIndex = END_BUT; // Use large value for non-index indication
Point p = pTS->getPoint();
if (p.z > __PRESURE) {
p.x = map(p.x, TS_MINX, TS_MAXX, 0, 240);
p.y = map(p.y, TS_MINY, TS_MAXY, 0, 320);
}
else {
p.x = 0;
p.y = 0;
#ifdef SKIP
Serial.print("p.x = "); Serial.print(p.x); Serial.print(" p.y = "); Serial.print(p.y);
Serial.println();
#endif
}
while (i < NumDispButtons) // check all the buttons
{
pTryButton->ProcessXY(p);
if (pTryButton->ButtonPressed())
{
TouchedButtonIndex = (SYS_BUTTONS)i;
#ifdef SKIP
Serial.print("TouchedButtonIndex = "); Serial.print(i);
Serial.println();
#endif
return; // take first button pressed found
}
if (pTryButton->ButtonHeld())
{
HeldButtonIndex = (SYS_BUTTONS)i;
#ifdef DEBUG
Serial.print(">>** HeldButtonIndex = "); Serial.print(i);
Serial.println();
#endif
return; // take first button pressed found
}
if (pTryButton->ButtonReleased())
{
ReleaseButtonIndex = (SYS_BUTTONS)i;
#ifdef SKIP
Serial.print("ReleaseButtonIndex = "); Serial.print(i);
Serial.println();
#endif
return; // take first button pressed found
}
pTryButton++;
i++;
}
// }
}