removing hashtags from docs

This commit is contained in:
Peli de Halleux
2016-04-01 16:22:47 -07:00
parent 64eec2875b
commit 9f4a121829
268 changed files with 268 additions and 274 deletions

View File

@ -1,6 +1,6 @@
# Comment
A note in code. #docs #comment #language
A note in code.
### @parent blocks/statement

View File

@ -1,6 +1,6 @@
# On Signal Strength Changed
The `on signal strength changed` function. #docs #devices #ble
The `on signal strength changed` function.
Register code to run when the signal strength of the paired device changes.

View File

@ -1,6 +1,6 @@
# raise alert to
The raise alert to function. #docs #antenna #ble
The raise alert to function.
Raise an alert on a remote device.

View File

@ -1,6 +1,6 @@
# Receive Number
The broadcast function. #docs #ble #radio
The broadcast function.
Reads the next radio packet as a number data packet.

View File

@ -1,6 +1,6 @@
# Signal Strength
The `signal strength` function. #docs #antenna #ble
The `signal strength` function.
Returns the signal strength reported by the paired device from ``0`` (no signal) to ``4`` (full strength).

View File

@ -1,6 +1,6 @@
# tell camera to
The tell camera to function. #docs #antenna #ble
The tell camera to function.
Access the photo/video-taking functionality of a remote device using the ``tell camera to`` function.

View File

@ -1,6 +1,6 @@
# tell microphone to
The tell microphone to function. #docs #antenna #ble
The tell microphone to function.
Access the audio recording capabilities of the device using the ``tell microphone to`` function.

View File

@ -1,6 +1,6 @@
# tell remote control to
The tell remote control to function. #docs #antenna #ble
The tell remote control to function.
Control the presentation of media content available on a remote device using the `tell remote control` to function.

View File

@ -1,6 +1,6 @@
# Clear
The clear function for images. #clear #docs
The clear function for images.
Turn off all the pixels in an [Image](/microbit/reference/image/image).

View File

@ -1,6 +1,6 @@
# Image
An image for the micro:bit screen. #docs #image #screen #LED
An image for the micro:bit screen.
### @parent blocks/language

View File

@ -1,6 +1,6 @@
# Pixel
The pixel function. #pixel #image #docs
The pixel function.
Get the state of a pixel in an [Image](/microbit/reference/image/image).

View File

@ -1,6 +1,6 @@
# Plot Frame
The plot frame function. #plotframe #docs #image #screen #LED
The plot frame function.
Display an [Image](/microbit/reference/image/image) on the BBC micro:bit's [LED screen](/microbit/device/screen)

View File

@ -1,6 +1,6 @@
# Plot Image
The plot image function. #plotimage #docs #image #screen #LED
The plot image function.
Display an [Image](/microbit/reference/image/image) on the BBC micro:bit's [LED screen](/microbit/device/screen)

View File

@ -1,6 +1,6 @@
# Scroll Image
The scroll image function. #scrollimage #image #docs
The scroll image function.
Scrolls the frames within an [Image](/microbit/reference/image/image) on the [LED screen](/microbit/device/screen).

View File

@ -1,6 +1,6 @@
# Set Pixel
The set pixel function. #set pixel #image #docs
The set pixel function. #set pixel.
Set the on/off state of pixel in an [Image](/microbit/reference/image/image).

View File

@ -1,6 +1,6 @@
# Show Frame
The show frame function. #showframe #docs #image #screen #LED
The show frame function.
Display an [Image](/microbit/reference/image/image) on the BBC micro:bit's [LED screen](/microbit/device/screen)

View File

@ -1,6 +1,6 @@
# Show Image
The show image function. #showimage #docs #image #screen #LED
The show image function.
Show an [Image](/microbit/reference/image/image) on the [LED screen](/microbit/device/screen), followed by a 400ms pause.

View File

@ -1,6 +1,6 @@
# Width
The width function. #width #image #docs
The width function.
Get the width of an [Image](/microbit/reference/image/image) in columns.

View File

@ -1,6 +1,6 @@
# Assignment Operator
Set the value for local and global variables #docs #assignment #language #var #data
Set the value for local and global variables.
### @parent js/operators

View File

@ -1,6 +1,6 @@
# Bits Library
Functions in the Bits library. #docs #bits #32bit #signed #unsigned
Functions in the Bits library.
### @parent td/language

View File

@ -1,6 +1,6 @@
# Break
Break statement; exit a for or while loop. #docs #break #language #loop #for #while
Break statement; exit a for or while loop.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Call a Function
How to call a function in your code. #docs #function #call #language
How to call a function in your code.
### @parent js/language

View File

@ -1,6 +1,6 @@
# function
A function with inputs and outputs. #docs #function #language
A function with inputs and outputs.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Comment
A note in code. #docs #comment #language
A note in code.
### @parent js/statement

View File

@ -1,6 +1,6 @@
# In-browser compiler
The BBC micro:bit pins #docs #gnd #p1 #p2 #p3 #3V
The BBC micro:bit pins.
## We listened to your feedback!

View File

@ -1,6 +1,6 @@
# Global Variables
How to define and use global variables. #docs #data #language #variables
How to define and use global variables.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Touch Develop Editor
The Touch Develop editor. #docs #editor #scripts #compile #run #keyboard
The Touch Develop editor.
### @parent js/contents

View File

@ -1,6 +1,6 @@
# event handler
Event handlers - how they work. #eventhandler #docs #input #button
Event handlers - how they work.
An event handler is code that is associated with a particular event, such as "button A pressed". You create (or register) the association between an event and an event handler by calling a function named "on <event>". After registering an event handler with an event, then whenever that event occurs, the event handler code executes.

View File

@ -1,6 +1,6 @@
# For
Repeat code a preset number of times. #docs #for #endfor #language
Repeat code a preset number of times.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Create a Function
How to define a function with input and output parameters. #docs #function #language
How to define a function with input and output parameters.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Function Parameters
How to use parameters to pass info in and out of an function. #docs #input #output #function #functionparameters
How to use parameters to pass info in and out of an function.
### @parent js/function

View File

@ -1,6 +1,6 @@
# Gallery
Overview of Touch Develop lessons for the BBC micro:bit. #docs #contents
Overview of Touch Develop lessons for the BBC micro:bit.
### @short Gallery

View File

@ -1,6 +1,6 @@
# Game Tutorials
Overview of Games for the BBC micro:bit. #docs #contents
Overview of Games for the BBC micro:bit.
### @short Games

View File

@ -1,6 +1,4 @@
# basic LED show
#tutorial #docs
# basic LED show.
### Challenge 0

View File

@ -1,6 +1,4 @@
# blink symbols
#tutorial #docs
# blink symbols.
### Challenge 0

View File

@ -1,6 +1,6 @@
# TouchDevelop Lessons
Overview of TouchDevelop lessons for the micro:bit. #docs #contents
Overview of TouchDevelop lessons for the micro:bit.
### @section full

View File

@ -1,6 +1,6 @@
# If
Run code based on a condition. #docs #if #then #else #endif #language #elseif
Run code based on a condition.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Image
An image for the micro:bit screen. #docs #image #screen #LED
An image for the micro:bit screen.
### @parent js/language

View File

@ -1,6 +1,6 @@
# Touch Develop Lessons
Overview of Touch Develop lessons for the BBC micro:bit. #docs #contents
Overview of Touch Develop lessons for the BBC micro:bit.
### @short Lessons

View File

@ -1,6 +1,6 @@
# 2 player pong lesson
make a game to test your focus on the moving ball #function #on-button-pressed #if #show-animation #mod #random #Boolean #docs
make a game to test your focus on the moving ball.
## Topic

View File

@ -1,6 +1,6 @@
# 2 player pong quiz answers
a two-player game of Pong using TWO BBC micro:bits! #LED #number #math #acceleration #docs
a two-player game of Pong using TWO BBC micro:bits!.
## Name

View File

@ -1,6 +1,6 @@
# 2 player pong quiz
a two-player game of Pong using TWO BBC micro:bits! #LED #number #math #acceleration #docs
a two-player game of Pong using TWO BBC micro:bits!.
## Name

View File

@ -1,6 +1,6 @@
# zoomer challenges
The acceleration function. #acceleration #docs #input
The acceleration function.
**Challenge 0**

View File

@ -1,6 +1,6 @@
# banana keyboard blocks lesson
display beautiful images on the BBC micro:bit #var #pause #docs
display beautiful images on the BBC micro:bit.
## Topic

View File

@ -1,6 +1,6 @@
# beautiful image lesson
display beautiful images on the BBC micro:bit #var #pause #docs
display beautiful images on the BBC micro:bit.
### @video td/videos/beautiful-image-0

View File

@ -1,6 +1,6 @@
# blink lesson
Learn how to create a blinking LED. #LED #screen #plot #docs #lesson
Learn how to create a blinking LED.
### @video td/videos/blink-0

View File

@ -1,6 +1,6 @@
# blink challenges
Coding challenges for the blink tutorial #docs #challenges
Coding challenges for the blink tutorial.
## Before we get started

View File

@ -1,6 +1,6 @@
# bop it lesson
a game where you have to keep up with the commands #var #data #if #random #min #max #mod #plot #unplot #pause #accceleration #docs
a game where you have to keep up with the commands.
## Topic

View File

@ -1,6 +1,6 @@
# bounce image lesson
scroll an image across the screen #animation #docs
scroll an image across the screen.
### @video td/videos/bounce-image-0

View File

@ -1,6 +1,6 @@
# bounce image quiz answers
scroll an image on the BBC micro:bit #LED #screen #animation #docs
scroll an image on the BBC micro:bit.
This is the answer key for the [bounce image quiz](/microbit/lessons/bounce-image/quiz).

View File

@ -1,6 +1,6 @@
# bounce image quiz
scroll an image on the BBC micro:bit #LED #screen #animation #docs
scroll an image on the BBC micro:bit.
## Name

View File

@ -1,6 +1,6 @@
# strobe lightquiz
Learn how to create a blinking LED script with a for loop. #LED #screen #plot #docs
Learn how to create a blinking LED script with a for loop.
## Name

View File

@ -1,6 +1,6 @@
# cascade quiz
Learn how to create a blinking LED script with a for loop. #LED #screen #plot #docs
Learn how to create a blinking LED script with a for loop.
## Name

View File

@ -1,6 +1,6 @@
# compass lesson
build a compass app that applies the BBC micro:bit magnetic sensor (magnetometer) #functions #var #docs
build a compass app that applies the BBC micro:bit magnetic sensor (magnetometer).
build a compass app that applies the BBC micro:bit magnetic sensor (magnetometer)

View File

@ -1,6 +1,6 @@
# counter lesson
Learn how to create a counter with with on button pressed. #show #number #screen #number #math #docs
Learn how to create a counter with with on button pressed.
### @video td/videos/counter-0

View File

@ -1,6 +1,6 @@
# die roll lesson
create a die on the BBC micro:bit #button #pressed #math #random #var #string #if #docs
create a die on the BBC micro:bit.
## Topic

View File

@ -1,6 +1,6 @@
# digi yoyo lesson
create a counter with a while loop #while #loop #counter #docs
create a counter with a while loop.
### @video td/videos/digi-yoyo-0

View File

@ -1,6 +1,6 @@
# digital pet lesson
a display of pet images for the BBC micro:bit #functions #number #forever #button #string #pause #data #shake #docs
a display of pet images for the BBC micro:bit.
### @video td/videos/digital-pet-0

View File

@ -1,6 +1,6 @@
# flashing heart lesson
Learn how to create LED images with a global variable. #LED #screen #plot #docs
Learn how to create LED images with a global variable.
### @video td/videos/flashing-heart-0

View File

@ -1,6 +1,6 @@
# flipping bird lesson
count the number of times the BBC micro:bit has been shaken #var #shake #mod #math #plot #docs
count the number of times the BBC micro:bit has been shaken.
### @video td/videos/flipping-bird-0

View File

@ -1,6 +1,6 @@
# flipping bird quiz answers
use modulo with a conditional #mod #shake #variables #docs #input #mod
use modulo with a conditional.
This is the answer key for the [flipping bird quiz](/microbit/lessons/flipping-bird/quiz).

View File

@ -1,6 +1,6 @@
# flipping bird quiz
use modulo with a conditional #mod #shake #variables #docs #input #mod
use modulo with a conditional.
## Name

View File

@ -1,6 +1,6 @@
# glowing pendulum lesson
construct a pendulum that glows using acceleration #var #acceleration #abs #brightness #plot #docs
construct a pendulum that glows using acceleration.
## Topic

View File

@ -1,6 +1,6 @@
# glowing sword lesson
make a glowing sword #image #docs
make a glowing sword.
### @video td/videos/glowing-sword-0

View File

@ -1,6 +1,6 @@
# glowing sword activity
Make glowing sword. #docs #microbit
Make glowing sword.
### ~avatar avatar

View File

@ -1,6 +1,6 @@
# glowing sword quiz answers
The answers for the glowing sword quiz. #LED #image #fade #docs
The answers for the glowing sword quiz.
This is the answer key for the [glowing sword quiz](/microbit/lessons/glowing-sword/quiz).

View File

@ -1,6 +1,6 @@
# glowing sword quiz
make a glowing sword. #LED #image #fade #docs
make a glowing sword.
## Name

View File

@ -1,6 +1,6 @@
# guess the number lesson
Learn to create a random number with input from button A. #input #screen #math #docs
Learn to create a random number with input from button A.
### @video td/videos/guess-the-number-0

View File

@ -1,6 +1,6 @@
# guess the number activity
guess the number with math random. #microbit #docs
guess the number with math random.
### ~avatar avatar

View File

@ -1,6 +1,6 @@
# guess the number lesson plan
Learn how to create a random number with input from button A. #input #screen #math #docs
Learn how to create a random number with input from button A.
### @video vimeo/134121077

View File

@ -1,6 +1,6 @@
# hack your headphones lesson
display beautiful images on the BBC micro:bit #var #pause #docs
display beautiful images on the BBC micro:bit.
## Topic

View File

@ -1,6 +1,6 @@
# hack your headphones activity
hack your headphones #microbit #docs
hack your headphones.
# BBC micro:bit music

View File

@ -1,6 +1,6 @@
# jailbreak lesson
break out of a counting loop by pressing button "A" #button #while #if #Boolean #pause #string #plot #break #docs
break out of a counting loop by pressing button "A".
### @video td/videos/jailbreak-0

View File

@ -1,6 +1,6 @@
# jailbreak quiz answers
break out of a counting loop by pressing button "A" #break #string #variables #docs
break out of a counting loop by pressing button "A".
This is the answer key for the [jailbreak quiz](/microbit/lessons/jailbreak/quiz).

View File

@ -1,6 +1,6 @@
# jailbreak quiz
break out of a counting loop by pressing button "A" #break #string #variables #docs
break out of a counting loop by pressing button "A".
## Name

View File

@ -1,6 +1,6 @@
# landslide challenges
Coding challenges for the landslide tutorial. #onfall #docs
Coding challenges for the landslide tutorial.
### ~avatar avatar fail

View File

@ -1,6 +1,6 @@
# letter up lesson
create a guessing game that can be played with your friends #at #string #at #on-logo-down #string-functions #on-logo-up #library #docs
create a guessing game that can be played with your friends.
## Topic

View File

@ -1,6 +1,6 @@
# cascade quiz
Learn how to create a blinking LED script with a for loop. #LED #screen #plot #docs
Learn how to create a blinking LED script with a for loop.
## Name

View File

@ -1,6 +1,6 @@
# line of fire lesson
create a game that relies on precise instincts and timing reflexes #if # #function #data #forever #var #button #if #assignment #pause #string #number #docs
create a game that relies on precise instincts and timing reflexes #if #.
### @video td/videos/timing-game-0

View File

@ -1,6 +1,6 @@
# line of fire quiz answers
create a game that relies on precise instincts and timing reflexes #LED #number #math #acceleration #docs
create a game that relies on precise instincts and timing reflexes.
## Name

View File

@ -1,6 +1,6 @@
# line of fire quiz
create a game that relies on precise instincts and timing reflexes #LED #number #math #acceleration #docs
create a game that relies on precise instincts and timing reflexes.
## Name

View File

@ -1,6 +1,6 @@
# looper lesson
Learn to control blinking LEDs. #LED #screen #for #docs
Learn to control blinking LEDs.
### @video td/videos/looper-0

View File

@ -1,6 +1,6 @@
# looper lesson
Learn to control blinking LEDs. #LED #screen #for #docs
Learn to control blinking LEDs.
### @video vimeo/134453504

View File

@ -1,6 +1,6 @@
# love meter lesson
create a love meter with the BBC micro:bit #pin #pressed #string #if #var #pause #show #docs
create a love meter with the BBC micro:bit.
### @video td/videos/love-meter-0

View File

@ -1,6 +1,6 @@
# love meter quiz answers
The answers to the love meter quiz. #LED #screen #variables #docs
The answers to the love meter quiz.
This is the answer key for the [love meter quiz](/microbit/lessons/love-meter/quiz).

View File

@ -1,6 +1,6 @@
# love meter quiz
Learn how to make a love meter that you can try with someone. #LED #screen #variables #docs
Learn how to make a love meter that you can try with someone.
## Name

View File

@ -1,6 +1,6 @@
# lucky 7 lesson
show a number on the LED screen #show #number #docs
show a number on the LED screen.
### @video td/videos/lucky-7-0

View File

@ -1,6 +1,6 @@
# lucky 7 activity
show a number on the LED screen. #docs #tutorials #stepByStep
show a number on the LED screen.
### ~avatar avatar

View File

@ -1,6 +1,6 @@
# lucky 7 quiz answers
Show a number on the BBC micro:bit. #LED #screen #show #math #docs #input
Show a number on the BBC micro:bit.
This is the answer key for the [lucky 7 quiz](/microbit/lessons/lucky-7/quiz).

View File

@ -1,6 +1,6 @@
# lucky 7 quiz
Show a number on the BBC micro:bit. #LED #screen #show #math #docs #input
Show a number on the BBC micro:bit.
## Name

View File

@ -1,6 +1,6 @@
# magic 8 lesson
a fortune teller game with the BBC micro:bit #string #shake #clear-screen #if #string #number #var #docs
a fortune teller game with the BBC micro:bit.
### @video td/videos/magic-8-1

View File

@ -1,6 +1,6 @@
# magic logo lesson
show an image that points up when the logo is up #logo #point #docs
show an image that points up when the logo is up.
### @video td/videos/magic-logo-0

View File

@ -1,6 +1,6 @@
# magic logo activity
show an image that points up when the logo is up. #docs #microbit
show an image that points up when the logo is up.
### ~avatar avatar

View File

@ -1,6 +1,6 @@
# meteorite lesson
a game in which you must dodge the meteorites with your ship. #functions #data #forever #var #button #if #assignment #plot-all #pause #string #number #docs
a game in which you must dodge the meteorites with your ship.
## Topic

View File

@ -1,6 +1,6 @@
# meteorite quiz answers
create the game meteorite #LED #number #math #acceleration #docs
create the game meteorite.
## Name

View File

@ -1,6 +1,6 @@
# meteorite quiz
create the game meteorite #LED #number #math #acceleration #docs
create the game meteorite.
## Name

View File

@ -1,6 +1,6 @@
# minesweeper lesson
A game that tests your memory for placing a LED mine then finding the hidden LED mine #var #data #if #random #min #max #mod #plot #unplot #pause #accceleration #docs
A game that tests your memory for placing a LED mine then finding the hidden LED mine.
### @video td/videos/minesweeper-0

View File

@ -1,6 +1,6 @@
# minesweeper quiz answers
make a game to test your memory for placing a LED mine then finding the hidden LED mine #math #random #docs
make a game to test your memory for placing a LED mine then finding the hidden LED mine.
## Name

View File

@ -1,6 +1,6 @@
# minesweeper quiz
make a game to test your memory for placing a LED mine then finding the hidden LED mine #math #random #docs
make a game to test your memory for placing a LED mine then finding the hidden LED mine.
## Name

View File

@ -1,6 +1,6 @@
# night light lesson
change the brightness of the BBC micro:bit #brightness #plot #docs
change the brightness of the BBC micro:bit.
### @video td/videos/night-light-0

Some files were not shown because too many files have changed in this diff Show More