Show Image

Show an image (picture) on the LED screen. After the Calliope mini shows an image, it will pause for 400 milliseconds (1000 milliseconds is one second).

let item: Image = null;
item.showImage(0);

Parameters

Example: Flip-flopping arrow

This program makes a big image with a frame of an arrow pointing up, and a frame of an arrow pointing down. If you press button A, the program will use show image to show the arrow pointing up. (It starts 0 LEDs from the left in the big image.) If you press button B, the program will use show image to show the arrow pointing down, which starts 5 LEDs from the left.

let arrows = images.createBigImage(`
    . . # . .   . . # . .
    . # # # .   . . # . .
    # . # . #   # . # . #
    . . # . .   . # # # .
    . . # . .   . . # . .
    `);
input.onButtonPressed(Button.A, () => {
    arrows.showImage(0);
});
input.onButtonPressed(Button.B, () => {
    arrows.showImage(5);
});

See also

Getting Started, image, create image, create big image, scroll image, show animation

Edit this page on GitHub