ERIS CORE

◆ onTouch()

void FLASHMEM AppAudioToPolyphonic::onTouch ( uint16_t  t_x,
uint16_t  t_y 
)
inlinevirtual

Event handler called on touch.

Parameters
t_x
t_y

Reimplemented from AppBaseClass.

Definition at line 209 of file AppAudioToPolyphonic.h.

209  {
210  x_start = t_x;
211  y_start = t_y;
212  x_last = t_x;
213  y_last = t_y;
214  if (t_x > x && t_x < (x + w) && t_y > y && t_y < (y + h)){
215  }
216  }

References AppBaseClass::h, AppBaseClass::w, AppBaseClass::x, x_last, x_start, AppBaseClass::y, y_last, and y_start.