removing videos from docs

This commit is contained in:
Peli de Halleux
2016-05-26 15:24:10 -07:00
parent 493f76eba7
commit 5553fb93bb
83 changed files with 75 additions and 205 deletions

View File

@ -4,7 +4,7 @@ Develop shapes with a for loop.
### ~avatar avatar
### @video td/videos/strobe-light-0
Welcome! This guided tutorial will teach how to develop shapes with a for loop. Let's get started!

View File

@ -19,7 +19,7 @@ for (let i = 0; i < 5; i++) {
### Challenge 1
### @video td/videos/strobe-light-1
Make the LEDs light up faster by changing the **pause** from 200 to 100 milliseconds:
@ -36,7 +36,7 @@ for (let i = 0; i < 5; i++) {
### Challenge 2
### @video td/videos/strobe-light-2
Make the board light up by rows instead of by columns by swapping the `i` and `j` variables in `plot(i, j)`.
@ -53,7 +53,7 @@ for (let i = 0; i < 5; i++) {
### Challenge 3
### @video td/videos/strobe-light-ultimate
Now that all the LEDs are lit up, let's make them turn off by reversing the strobe light pattern! You can use `unplot` to turn off a single LED.