Plot Frame

The plot frame function.

Display an Image on the Calliope mini’s LED screen

JavaScript

export function plotFrame(_this: micro_bit.Image, index: number)

Parameters

Difference from plot image

The plot frame function takes the index of the frame (if there are two frames, then the possible indices are 0 and 1), whereas plot image accepts an offset (if there are two frames, the offset would range between 0 and 9).

Example

let img = images.createImage(`
# . . . # # . . . #
. # . # . . # # # .
. . # . . . # # # .
. # . # . . # # # .
# . . . # # . . . #
`)
img.plotFrame(1)

See also

create image, show animation, image, show image, scroll image

Edit this page on GitHub