2016-03-25 16:47:20 -07:00
# rotation animation block lesson
2016-04-01 16:22:47 -07:00
Learn how to create images with a global variable and while loop.
2016-03-25 16:47:20 -07:00
## Topic
While Loop
## Quick links
2016-04-13 08:27:45 -07:00
* [activity ](/lessons/rotation-animation/activity )
* [challenges ](/lessons/rotation-animation/challenges )
* [quiz ](/lessons/rotation-animation/quiz )
* [quiz answers ](/lessons/rotation-animation/quiz-answers )
2016-03-25 16:47:20 -07:00
## Prior learning/place of lesson in scheme of work
Learn how to create images that look like a rotating animation by using a while loop. We will be learning how to create a rotating animation using a global variable, while loop as well as simple commands, such as on button pressed and show animation.
## Documentation
2016-04-04 22:33:13 -07:00
```cards
2016-06-01 21:19:16 -07:00
while (true) {}
2016-03-29 16:17:34 -07:00
let x = 0
2016-04-04 22:33:13 -07:00
input.onButtonPressed(Button.A, () => {})
2016-03-29 16:17:34 -07:00
basic.showLeds(`
. . . . .
. . . . .
. . # . .
. . . . .
. . . . .
`)
basic.pause(100)
```
2016-03-25 16:47:20 -07:00
## Objectives
2016-03-30 15:54:19 -07:00
* learn how to create a variable for a place where you can store data, accessible across functions, and in nested code blocks
* learn how to set or change the value of a variable
2016-03-25 16:47:20 -07:00
* learn how to repeat code while a condition is true
2016-03-30 15:54:19 -07:00
* learn how to declare a boolean variable to determine which code will execute next
2016-03-25 16:47:20 -07:00
* learn how to run code when an input button is pressed
* learn how to show a series of image frames on the LED screen
* learn how to pause your code for the specified number of milliseconds