rename micro:bit to @boardname@

This commit is contained in:
Peli de Halleux
2016-11-01 17:44:37 -07:00
parent 9bc1e38345
commit 89406330cf
226 changed files with 697 additions and 750 deletions

View File

@ -1,6 +1,6 @@
# Rotation
Find how much the micro:bit is tilted in different directions.
Find how much the @boardname@ is tilted in different directions.
```sig
input.rotation(Rotation.Roll);
@ -9,7 +9,7 @@ input.rotation(Rotation.Roll);
## ~hint
The @boardname@ has a part called the **accelerometer** that can
check how the micro:bit is moving.
check how the @boardname@ is moving.
## ~
@ -21,13 +21,13 @@ check how the micro:bit is moving.
* a [number](/reference/types/number) that means how much the microbit is tilted in the direction you say, from `0` to `360` degrees
### Example: micro:bit leveler
### Example: @boardname@ leveler
This program helps you move the @boardname@ until it is level. When
it is level, the micro:bit shows a smiley.
it is level, the @boardname@ shows a smiley.
If you are running this program in a browser, you can tilt the
micro:bit with your mouse.
@boardname@ with your mouse.
```blocks