updating lesson links

This commit is contained in:
Michael Elliot Braun
2016-03-30 16:10:27 -07:00
parent a14585d36f
commit ba6c9f9d92
19 changed files with 83 additions and 38 deletions

View File

@ -7,7 +7,7 @@ Display the direction that the micro:bit is facing using the compass
Complete the following [guided tutorial](/microbit/lessons/compass/activity), your code should look like this:
```blocks
let degrees = null;
let degrees = 0;
basic.forever(() => {
degrees = input.compassHeading();
if (degrees < 45) {
@ -30,7 +30,7 @@ basic.forever(() => {
Instead of displaying `N` when the BBC micro:bit is pointing North, display a star to indicate the north star.
```blocks
let degrees = null;
let degrees = 0;
basic.forever(() => {
degrees = input.compassHeading();
if (degrees < 45) {
@ -61,7 +61,7 @@ basic.forever(() => {
Instead of displaying just `N`, `W`, `S`, or `E`, display the full word.
```blocks
let degrees = null;
let degrees = 0;
basic.forever(() => {
degrees = input.compassHeading();
if (degrees < 45) {