From 8f99ee36086c4622a7d8861b1c794ddafd291f15 Mon Sep 17 00:00:00 2001 From: Michael Elliot Braun Date: Mon, 9 May 2016 14:34:51 -0700 Subject: [PATCH] beautiful image tutorial --- docs/lessons/beautiful-image/tutorial.md | 48 ++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 docs/lessons/beautiful-image/tutorial.md diff --git a/docs/lessons/beautiful-image/tutorial.md b/docs/lessons/beautiful-image/tutorial.md new file mode 100644 index 00000000..9b097b83 --- /dev/null +++ b/docs/lessons/beautiful-image/tutorial.md @@ -0,0 +1,48 @@ +# beautiful image blocks challenges + +Beautiful Image tutorial. + +### ~avatar avatar + +### @video td/videos/beautiful-image-0 + +Rebuild the game! + +The blocks have been shuffled! Put them back together so that… + +* display images on the screen with show LEDs + + +```shuffle +basic.showLeds(` + # # # # # + # # . # # + # . # . # + # # . # # + # # # # # + `) +basic.showLeds(` + # . # . # + . # # # . + . . # . . + . # # # . + # . # . # + `) +basic.pause(100) +``` + +Hints and tips + +Cut out these documentation cards to help you! + +```cards +basic.showLeds(` + . . . . . + . . . . . + . . # . . + . . . . . + . . . . . + `) +basic.pause(100) + +``` \ No newline at end of file