MMBasic V6.03.00 release candidates


Author Message
matherp
Guru

Joined: 11/12/2012
Location: United Kingdom
Posts: 11604
Posted: 06:38pm 02 Jun 2026      

The latest code is RC15. The only thing missing is a bluetooth hdmi version which I need some new H/W to test properly.

You can check touch functionality with GUI TEST TOUCH which supports dual touch traces or you can run the attached to test all the gestures. This works on my 7" display with all gestures passing.
You can also play with the on-screen keyboard  which you set up with
OPTION SCREEN KEYBOARD n where n is the screen percentage to use for the keyboard (30-40 recommended)

  Quote  Do
Select Case Touch(SWIPE)
  Case 1 : Print @(0,0) "swipe LEFT     "
  Case 2 : Print @(0,0) "swipe RIGHT    "
  Case 3 : Print @(0,0) "swipe UP       "
  Case 4 : Print @(0,0) "swipe DOWN     "
End Select
If Touch(TAP)   Then Print @(0,16) "TAP            "
If Touch(DTAP)  Then Print @(0,16) "DOUBLE TAP     "
If Touch(HOLD)  Then Print @(0,16) "LONG PRESS     "
Select Case Touch(PINCH)
  Case 1 : Print @(0,32) "EXPAND         "
  Case 2 : Print @(0,32) "CONTRACT       "
End Select
Select Case Touch(ROTATE)
  Case 1 : Print @(0,48) "ROTATE CW      "
  Case 2 : Print @(0,48) "ROTATE CCW     "
End Select
If Touch(TTAP)  Then Print @(0,64) "TWO-FINGER TAP "
Pause 50
Loop