examples/events/rpiTouchExample/README.md
This Example demonstrates the touchscreen event of openFrameworks for the Official Raspberry Pi Touch Display and the ofAppEGLWindow.
After studying this example, you'll understand how to trigger events and retrieve information from events such as touch down, touch position, and which fingers are touching the screen.
In the code, pay attention to:
ofGetTimestampString() and ofGetElapsedTimeMillis()void touchDown(int x, int y, int id)void touchMoved(int x, int y, int id)void touchUp(int x, int y, int id)When launching this app, you should see a screen with
Instructions for use:
This Example uses no other classes.