You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TTP223 ttp223(PIN_TTP223_SENSOR, onSingleTouch, onLongTouchStart, onLongTouchEnd, onLongTouchCancelled); // initialize TTP223 instance with the callback function
66
+
voidonSingleTouch(); // TTP223 callback
67
+
voidonLongTouchStart(); // TTP223 callback
68
+
voidonLongTouchEnd(); // TTP223 callback
69
+
voidonLongTouchCancelled(); // TTP223 callback
70
+
71
+
#if defined(__TURTLPASS_PIN_TTP223__)
72
+
TTP223 ttp223(__TURTLPASS_PIN_TTP223__, onSingleTouch, onLongTouchStart, onLongTouchEnd, onLongTouchCancelled); // initialize TTP223 instance with the callback functions
73
+
#else
74
+
// if no touch sensor pin defined, fallback to bootsel button
75
+
BootselButton bootselButton(onSingleTouch, onLongTouchStart, onLongTouchEnd, onLongTouchCancelled); // initialize BootselButton instance with the callback functions
0 commit comments