Slide Show Reference
In the slide show mode, stored images are shown automatically for a set interval and order. The slide show will continue until a new mode is selected.
Image Design
Define up to 10 images with the format:
Item | Description |
---|---|
Image number | Image number 1...10 |
Image format | Bitmap (24bit color, 16bit color, Monochrome) |
Image resolution | 800 x 480 dots |
Slide Show Mode Settings
Before entering the Slide Show mode, the images must be stored. The following options must be set when entering Slide Show mode:
Items | Description |
---|---|
Working mode | Round robin mode: Selected images are shown for the set interval and order. Single mode: Selected image is shown (only one image is shown) |
Number of slides | Defines the number of images for round robin display |
First slide number | Defines the image to start the slide show |
Interval | Slide show interval: Min. 2000msec Max. 120000msec |
Slide show logic
API Reference
Function | Description |
---|---|
initializeSlideShow | SlideShow settings |
writeRomImage | Tablet write ROM functions |
setOperationMode | Select Slide Show mode |
Code illustration
Upload Images
Upload up to 10 images, see STU-540 ROM Store
Requires image descriptor:
romStartImageData = initializeSlideShow(encodingMode, false, bitmapNumber);
Start slide show mode
OperationMode_SlideShow slideShow;
slideShow.workingMode = 0;
slideShow.numberOfSlides = 3;
slideShow.slideNumber[0] = 1;
slideShow.slideNumber[1] = 2;
slideShow.slideNumber[2] = 3;
slideShow.interval = 2000;
tablet.setOperationMode( initializeSlideShow(slideShow) );