1.2 KiB
1.2 KiB
Plot Image
The plot image function.
Display an Image on the BBC micro:bit's LED screen
KindScript
export function plotImage(_this: micro_bit.Image, xOffset: number)
Parameters
- x offset - Number; the horizontal starting point of an image; use 0 for the first frame of the image, 5 for the second frame of the image, 10 for the third frame and so on.
Difference from show image
The show image
function has a built in delay of 400ms after display of the image, whereas plot image
has no built-in delay.
Example
let img = images.createImage(`
# . . . # # . . . #
. # . # . . # # # .
. . # . . . # # # .
. # . # . . # # # .
# . . . # # . . . #
`)
img.plotImage(0)
Lessons
smiley, flashing heart, magic logo
See also
create image, show animation, image, show image, scroll image