Insert hardware vids into csintro pages (#1828)

* Insert hardward vids into csintro pages

* bad paste of link
This commit is contained in:
Galen Nickel
2019-02-12 16:25:51 -08:00
committed by GitHub
parent cfd5ba61e5
commit 739b9568b5
6 changed files with 50 additions and 1 deletions

View File

@ -179,7 +179,16 @@ This example uses boolean operations because both light level AND temperature mu
```block
if (128 > input.lightLevel() && 0 < input.lightLevel() && input.temperature() > 22) {}
```
 
### ~ hint
The @boardname@ uses some clever tricks to measure both light and temperature. Want to see how it can measure the light level and temprature? Watch these videos to learn how it does it.
https://www.youtube.com/watch?v=TKhCr-dQMBY
<br/>
https://www.youtube.com/watch?v=_T4N8O9xsMA
### ~
### Two-player game
Create a game in which two players take turns on the same micro:bit. You can use a boolean variable called PlayerATurn to keep track of whose turn it is.