Added animations, corrected typo

Added Battleship examples, animated firework and cascade screensaver
examples, and added a missing period.
This commit is contained in:
dkiang
2017-08-01 12:05:09 -07:00
parent 8431201ed0
commit 9510ec862e
9 changed files with 11 additions and 4 deletions

View File

@ -1,11 +1,13 @@
# Coordinate grid and LEDs
This lesson introduces the use of coordinates to store data or the results of mathematical operations. It gives students practice programming for the LEDs of the micro:bit screen using coordinates. And introduces the basic game blocks of MakeCode.
![Sample Heart Simulator](/static/courses/csintro/coordinates/cover.png)
This lesson introduces the use of coordinates to store data or the results of mathematical operations. It gives students practice programming for the LEDs of the micro:bit screen using coordinates, and introduces the basic game blocks of MakeCode.
## Lesson objectives
Students will...
* Understand that the 5 x 5 grid of LEDs on the micro:bit represent a coordinate grid with the origin (0,0) in the top left corner.
* Understand that the 5 x 5 grid of LEDs on the micro:bit represents a coordinate grid with the origin (0,0) in the top left corner.
* Understand that the values of the x coordinates range from 0 through four and increase from left to right.
* Understand that the values of the y coordinates range from 0 through four and increase from top to bottom.
* Learn how to refer to an individual LED by its x & y coordinates.