LCD is an optical device made up of a number of pixels filled with liquid crystals and placed in front of a light source (or a reflector) to produce images in color or monochrome.
Use Cases:
This article demonstrates how to interface monochrome graphical LCD with Iris Carrier Board V1.1A.
NOTE: Below mentioned examples can run on Colibri VF50/61 modules, for that you have to use Vybrid GPIO libraries available here.
Demo 1
Main function code snippet is shown below:
while (TRUE) { toRepeat = '\0'; GlcdToradexLogo(); ///< Display Toradex Logo on GLCD Sleep(5000); GlcdRobinApalisColibriLogo(); ///< Display Toradex Modules Logo on GLCD GlcdSetPage(GLCD_PAGE6, 0); GlcdDisplayString(" Embedded Computer "); ///< Display string on GLCD GlcdSetPage(GLCD_PAGE8, 0); GlcdDisplayString(" Modules"); Sleep(1000); printf("Press Enter to continue and 'e' to exit\n"); scanf_s("%c", &toRepeat); if (toRepeat == 'e') break; }
Output
Demo 2
This application takes the bitmap image (monochrome, 128x64) as an input and displays it on graphical LCD. We have done a small animation using multiple bmp files.
Output
NOTE: Images used are monochrome single layer bitmap images (.bmp file of 128x64 dimension).
Output
Following GUI will open that will show the same images displaying on the GLCD at that time.
NOTE: Images used are monochrome single layer bitmap images (.bmp file of 128x64 dimension).
Any feedback/question, please send us an email at support@toradex.com.