ERIS CORE

◆ onTouch()

void SvcErisAudioParameterController::onTouch ( uint16_t  t_x,
uint16_t  t_y 
)
inlineoverrideprotectedvirtual

Event handler called on touch.

Parameters
t_x
t_y

Reimplemented from AppBaseClass.

Definition at line 293 of file SvcErisAudioParameterController.h.

293  {
294  //check if touch point is within the application bounding box
295  if (t_x > x && t_x < (x + w) && t_y > y && t_y < (y + h)){
296  //is touched
297  }
298  };

References AppBaseClass::h, AppBaseClass::w, AppBaseClass::x, and AppBaseClass::y.