move lessons out of web site

will move select lessons back to "educators" section
This commit is contained in:
Tom Ball
2016-06-14 11:49:58 -04:00
parent a6e6dd8287
commit f4eca66648
184 changed files with 8 additions and 8 deletions

View File

@@ -1,38 +0,0 @@
# speed button lesson
code a speed game by declaring Booleans on the BBC micro:bit.
## Topic
Running Time
## Quick Links
* [activity](/lessons/speed-button/activity)
* [quiz](/lessons/speed-button/quiz)
* [quiz answers](/lessons/speed-button/quiz-answers)
## Prior learning/place of lesson in scheme of work
Learn how to declare a **Boolean** variable, `var t:= true` `var f:=false` for one of two possible values: true or false. We will be learning how to declare Boolean variables using global variables, if (conditionals), input on button pressed, input running time, as well as simple commands, such as input on button pressed, and show string.
## Documentation
* **running time** : [read more...](/reference/input/running-time)
* **global variable** : [read more...](/reference/variables/globals)
* **Boolean** : [read more...](/reference/types/boolean)
* **on button pressed** : [read more...](/reference/input/on-button-pressed)
* **if** : [read more...](/reference/logic/if)
* **show string** : [read more...](/reference/basic/show-string)
## Objectives
* learn how to get the number of milliseconds elapsed since the script began. 1,000 milliseconds = 1 second
* learn how to create a global variable to store data so that you can use it later in your code and will be accessible across functions and in nested code blocks
* learn how to create a Boolean with one of two possible values: true or false
* learn how to run code when an input button is pressed
* learn how to conditionally run code depending on whether a condition is true or not
* learn how to show a string on the LED screen one character at a time