pxt-microbit Accessibility PR (#529)

* Accessibility changes
This commit is contained in:
Sam El-Husseini
2017-09-07 13:42:08 -07:00
committed by GitHub
parent 3f87576a50
commit e3975e65e5
357 changed files with 1641 additions and 3540 deletions

View File

@ -2,7 +2,7 @@
Turn an LED on and off with forever
### ~avatar avatar
## ~avatar avatar
```sim
basic.forever(() => {
@ -14,7 +14,7 @@ basic.forever(() => {
```
Let's build a blinking light!
### ~
## ~
Have you ever tried to blink a flashlight at night? The concept is fairly simply: turn on the light, wait for a little, turn off the light, wait again, and repeat. That's exactly what we need to code to get a blinking LED.
@ -53,9 +53,9 @@ basic.forever(() => {
})
```
### ~avatar boothing
## ~avatar boothing
Excellent, you're ready to continue with the [challenges](/lessons/blink/challenges)!
### ~
## ~

View File

@ -15,7 +15,7 @@ basic.forever(() => {
})
```
### Challenge 1
## Challenge 1
Let's display a "smiley face" on the screen! We'll start by plotting the eyes.
@ -34,7 +34,7 @@ basic.forever(() => {
})
```
### Challenge 2
## Challenge 2
Let's add the code to plot the mouth by using `plot` and `unplot` to the following coordinates: (1,4), (2,4) and (3,4). When you're ready, don't forget to run your code to try it out!
@ -57,7 +57,7 @@ basic.forever(() => {
})
```
### Challenge 3
## Challenge 3
Let's keep using `plot` to convert the mouth into a smiley face.
@ -69,11 +69,11 @@ Let's keep using `plot` to convert the mouth into a smiley face.
0 1 1 1 0
````
### Challenge 4
## Challenge 4
Let's make it blink a bit faster. To do so, we need to reduce the amount of time used in ``pause`` to 100 milliseconds.
### Challenge 5
## Challenge 5
Create your own image by changing the coordinates in `plot` and `unplot`!