Example using the support package for LPC4088 DisplayModule

Dependencies:   DMBasicGUI DMSupport

Example using a lot of the features in the software package for the LPC4088 Display Module.

This project can be selected as a template when creating a new project based on the LPC4088 Display Module.

Information

This project works on the 4.3" display modules.

Some of the apps works on the 5" display modules. The ImageViewer and Slideshow app will show the images distorted as it does not take the resolution into consideration.

Information

The USB Status app is disabled. The Image viewer looks for images in the root of SD cards, USB memory sticks or the file system on the QSPI flash. The Slideshow app expects to find a slideshow script in /mci/elec14/ea_logo.txt.

This is what it looks like on the 4.3" display:

/media/uploads/embeddedartists/everything_cap_000.png /media/uploads/embeddedartists/everything_cap_001.png /media/uploads/embeddedartists/everything_cap_003.png /media/uploads/embeddedartists/everything_cap_004.png /media/uploads/embeddedartists/everything_cap_006.png /media/uploads/embeddedartists/everything_cap_008.png

Committer:
embeddedartists
Date:
Tue Feb 17 10:46:06 2015 +0100
Revision:
24:768f5958c308
Parent:
18:715f542538b3
Child:
27:4fe24decabf9
- Modified AppRTCSettings to use current time when initializing
- Added AppDraw to show off multitouch (works with single touch as well)
- Replaced wait with Thread::wait in main()
- Moved the ok/cancel button data into DMBasicGUI, overridable with
DM_BOARD_USE_BUILTIN_IMAGES
- Updated the DM_Support library (see version history there for changes)
- Updated the DM_BasicGUI library (see version history there for changes)
- Added texts to the icons in the launcher

Who changed what in which revision?

UserRevisionLine numberNew contents of line
embeddedartists 24:768f5958c308 1 #include "basic_image_data.h"
embeddedartists 24:768f5958c308 2
embeddedartists 13:57e65aba9802 3 extern const unsigned char img_arrow_down[];
embeddedartists 13:57e65aba9802 4 extern const unsigned int img_size_arrow_down;
embeddedartists 13:57e65aba9802 5
embeddedartists 13:57e65aba9802 6 extern const unsigned char img_arrow_left[];
embeddedartists 13:57e65aba9802 7 extern const unsigned int img_size_arrow_left;
embeddedartists 13:57e65aba9802 8
embeddedartists 13:57e65aba9802 9 extern const unsigned char img_arrow_right[];
embeddedartists 13:57e65aba9802 10 extern const unsigned int img_size_arrow_right;
embeddedartists 13:57e65aba9802 11
embeddedartists 13:57e65aba9802 12 extern const unsigned char img_arrow_up[];
embeddedartists 13:57e65aba9802 13 extern const unsigned int img_size_arrow_up;
embeddedartists 13:57e65aba9802 14
embeddedartists 7:c8bef6a4b019 15 extern const unsigned char img_bijiben[];
embeddedartists 7:c8bef6a4b019 16 extern const unsigned int img_size_bijiben;
embeddedartists 7:c8bef6a4b019 17
embeddedartists 7:c8bef6a4b019 18 extern const unsigned char img_help_info[];
embeddedartists 7:c8bef6a4b019 19 extern const unsigned int img_size_help_info;
embeddedartists 7:c8bef6a4b019 20
embeddedartists 7:c8bef6a4b019 21 extern const unsigned char img_multimedia_photo_manager[];
embeddedartists 7:c8bef6a4b019 22 extern const unsigned int img_size_multimedia_photo_manager;
embeddedartists 7:c8bef6a4b019 23
embeddedartists 7:c8bef6a4b019 24 extern const unsigned char img_preferences_color[];
embeddedartists 7:c8bef6a4b019 25 extern const unsigned int img_size_preferences_color;
embeddedartists 7:c8bef6a4b019 26
embeddedartists 7:c8bef6a4b019 27 extern const unsigned char img_preferences_desktop_applications[];
embeddedartists 7:c8bef6a4b019 28 extern const unsigned int img_size_preferences_desktop_applications;
embeddedartists 7:c8bef6a4b019 29
embeddedartists 7:c8bef6a4b019 30 extern const unsigned char img_preferences_system_time[];
embeddedartists 7:c8bef6a4b019 31 extern const unsigned int img_size_preferences_system_time;
embeddedartists 7:c8bef6a4b019 32
embeddedartists 7:c8bef6a4b019 33 extern const unsigned char img_session_properties[];
embeddedartists 7:c8bef6a4b019 34 extern const unsigned int img_size_session_properties;
embeddedartists 7:c8bef6a4b019 35
embeddedartists 7:c8bef6a4b019 36 extern const unsigned char img_unetbootin[];
embeddedartists 7:c8bef6a4b019 37 extern const unsigned int img_size_unetbootin;
embeddedartists 7:c8bef6a4b019 38
embeddedartists 7:c8bef6a4b019 39 extern const unsigned char img_utilities_system_monitor[];
embeddedartists 7:c8bef6a4b019 40 extern const unsigned int img_size_utilities_system_monitor;
embeddedartists 7:c8bef6a4b019 41
embeddedartists 13:57e65aba9802 42 extern const unsigned char img_numbers[];
embeddedartists 13:57e65aba9802 43 extern const unsigned int img_size_numbers;
embeddedartists 13:57e65aba9802 44
embeddedartists 18:715f542538b3 45 extern const unsigned char img_preferences_system_network[];
embeddedartists 18:715f542538b3 46 extern const unsigned int img_size_preferences_system_network;
embeddedartists 18:715f542538b3 47