removed video from rps

This commit is contained in:
Peli de Halleux 2016-05-26 15:10:46 -07:00
parent 91b90bf70e
commit 493f76eba7

View File

@ -2,8 +2,37 @@
### ~avatar avatar ### ~avatar avatar
### @video td/videos/rock-paper-scissors-0 ```sim
input.onGesture(Gesture.Shake, () => {
let img = Math.random(3)
if (img == 0) {
basic.showLeds(`
# # # # #
# . . . #
# . . . #
# . . . #
# # # # #
`)
} else if (img == 1) {
basic.showLeds(`
. . . . .
. # # # .
. # # # .
. # # # .
. . . . .
`)
} else {
basic.showLeds(`
# # . . #
# # . # .
. . # . .
# # . # .
# # . . #
`)
}
})
```
In this project, you will build a rock-paper-scissor game with the BBC micro:bit In this project, you will build a rock-paper-scissor game with the BBC micro:bit
### ~ ### ~
@ -112,11 +141,11 @@ input.onGesture(Gesture.Shake, () => {
`) `)
} else { } else {
basic.showLeds(` basic.showLeds(`
. . . # # # # . . #
# # . # . # # . # .
. . # . . . . # . .
# # . # . # # . # .
. . . # # # # . . #
`) `)
} }
}) })