I do not know the touch controller that the display uses.
We are using a Riverdi RVT70HSBNWC00-B display. The datasheet for the display mentions UxTouch but does not go into any detail.
Welcome to the Bridgetek Community!
Please read our Welcome Note
Technical Support enquires
please contact the team @ Bridgetek Support
Please refer to our website for detailed information on all our products - Bridgetek - Bridging Technology
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts Menu
CLEAR(1, 1, 1)
CMD_ROMFONT(1,34) //Load the settings of built-in font 34 into bitmap handle 1
BITMAP_LAYOUT_H(0,0)
BITMAP_SIZE(NEAREST, BORDER,BORDER, 0,0) //Update the visible area of bitmap handle 1 to the maximum
CMD_LOADIDENTITY()
CMD_TRANSLATE(4128768, 3276800)
CMD_ROTATE(8192)
CMD_SETMATRIX() //Configure transform matrix of bitmap
VERTEX2II(77, 10, 1, 'a') // <-- "a" does not display (you can test this by moving it down below the CMD_TEXT line)
CMD_TEXT(77, 111, 1, 0, "TEST-ROTATED") //Draw the text to be rotated
VERTEX2II(177, 10, 1, 'b') // <-- "b" displays
CMD_LOADIDENTITY()
CMD_SETMATRIX() //Restore transform matrix of bitmap
CMD_ROMFONT(1,34) //Re-load the setting of built-in font 34 into bitmap handle 1 to restore the visible area to normal
CMD_TEXT(100, 313, 1, 0, "TEST-Normal") //Draw the normal text