diff --git a/docs/device/usb.md b/docs/device/usb.md index 4cf1b877..700fa98c 100644 --- a/docs/device/usb.md +++ b/docs/device/usb.md @@ -40,7 +40,7 @@ Next, compile your script: 2. Open your script (find the script in **My Scripts** and click `Edit`). -3. Click `compile`. Your script is converted into a hex file that you can transfer and run on your micro:bit. +3. Click **Download**. Your script is converted into a hex file that you can transfer and run on your micro:bit. 4. When prompted, choose to save the compiled file on your computer (or anywhere other than the micro:bit). Depending on which browser you are using, the download will adopt the download behaviour of that particular browser. @@ -66,13 +66,13 @@ A dialogue box will appear, asking whether you would like to open or save your h **IE10** -Click on compile. You will see a message “Do you want to save this .hex file.” Select **Save**. +Click on **Download**. You will see a message “Do you want to save this .hex file.” Select **Save**. ### Mac ** Safari** -When you select **compile** in Safari on Mac, your file will be downloaded to your downloads folder. Go to your downloads folder and open the file. In Safari the file will appear as unknown.txt rather than a named .hex file. Drag and drop it onto your MICROBIT drive. +When you select **Download** in Safari on Mac, your file will be downloaded to your downloads folder. Go to your downloads folder and open the file. In Safari the file will appear as unknown.txt rather than a named .hex file. Drag and drop it onto your MICROBIT drive. ![](/static/mb/device/usb-4.jpg) @@ -86,7 +86,7 @@ A dialogue box will appear, asking whether you would like to open or save your h **Chrome** -When you select **compile** in Chrome, the file will be downloaded to the bottom of the browser in .hex format. Click on the small arrow and select **Show in Finder**. This will show the file in your download folder. Drag and drop the file onto your MICROBIT drive. +When you select **Download** in Chrome, the file will be downloaded to the bottom of the browser in .hex format. Click on the small arrow and select **Show in Finder**. This will show the file in your download folder. Drag and drop the file onto your MICROBIT drive. ![](/static/mb/device/usb-7.jpg) diff --git a/docs/getting-started.md b/docs/getting-started.md index 6d802209..75ddeb0f 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -35,7 +35,7 @@ When this program runs, you will see a smiley face, then a blank screen, then a smiley again -- it never stops! (That's because of the ``forever`` block.) -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! Make sure to follow the instructions. ### ~button /getting-started/screen diff --git a/docs/getting-started/buttons.md b/docs/getting-started/buttons.md index 0f2d79dd..438e9a3a 100644 --- a/docs/getting-started/buttons.md +++ b/docs/getting-started/buttons.md @@ -37,7 +37,7 @@ You can find the letter `B` by clicking the letter `A` on the #### ~ -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! #### Your turn! @@ -65,7 +65,7 @@ input.onPinPressed(TouchPin.P0, () => { . . # . .`); }); ``` -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! ## ~hint diff --git a/docs/getting-started/rock-paper-scissors.md b/docs/getting-started/rock-paper-scissors.md index ac9f6e79..a4e8395a 100644 --- a/docs/getting-started/rock-paper-scissors.md +++ b/docs/getting-started/rock-paper-scissors.md @@ -152,7 +152,7 @@ That's why you can use an ``else`` instead of an ``else if``. Your game is ready! -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! Have fun! @@ -198,7 +198,7 @@ input.onButtonPressed(Button.B, () => { basic.showNumber(game.score()) }) ``` -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! ### ~button /projects NEXT: PROJECTS! diff --git a/docs/getting-started/screen.md b/docs/getting-started/screen.md index 30cf1339..24dc158b 100644 --- a/docs/getting-started/screen.md +++ b/docs/getting-started/screen.md @@ -32,7 +32,7 @@ basic.forever(() => { `) }); ``` -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! ### Your turn! @@ -85,7 +85,7 @@ basic.forever(() => { `) }); ``` -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! #### ~hint diff --git a/docs/getting-started/shake.md b/docs/getting-started/shake.md index ced4b764..9996f03b 100644 --- a/docs/getting-started/shake.md +++ b/docs/getting-started/shake.md @@ -17,7 +17,7 @@ input.onGesture(Gesture.Shake, () => { # . . . #`); }); ``` -Click **Compile** to move your program to the BBC micro:bit! +Click **Download** to move your program to the BBC micro:bit! ### ~button /getting-started/coin-flipper NEXT: COIN FLIPPER GAME diff --git a/docs/lessons/blocks-conditions.md b/docs/lessons/blocks-conditions.md index a158926c..20e9159a 100644 --- a/docs/lessons/blocks-conditions.md +++ b/docs/lessons/blocks-conditions.md @@ -42,7 +42,7 @@ We want the message "Press A!" to scroll across the BBC micro:bit, so right-clic ![](/static/mb/blocks/lessons/blocks-conditions-2.png) -So, to recap: the `forever` block makes sure our code runs forever. The BBC micro:bit checks if the user is pressing the left button, if the user is not then the “Press the button!” message will scroll across the LEDs. If the user is pressing the button then the “hello, world!” message will scroll across the screen. Check this in the simulator or attach the BBC micro:bit to the computer then click **compile** to send the code onto the BBC micro:bit. +So, to recap: the `forever` block makes sure our code runs forever. The BBC micro:bit checks if the user is pressing the left button, if the user is not then the “Press the button!” message will scroll across the LEDs. If the user is pressing the button then the “hello, world!” message will scroll across the screen. Check this in the simulator or attach the BBC micro:bit to the computer then click **Download** to send the code onto the BBC micro:bit. ## What is a condition? diff --git a/docs/lessons/seismograph/activity.md b/docs/lessons/seismograph/activity.md index 01e6fb7f..d82f268a 100644 --- a/docs/lessons/seismograph/activity.md +++ b/docs/lessons/seismograph/activity.md @@ -92,7 +92,7 @@ Connect a micro:bit to your computer using your USB cable ![](/static/mb/lessons/seismograph33.png) -Click or tap the compile button for the seismograph program to run the program on the micro:bit. +Click or tap the **Download** button for the seismograph program to run the program on the micro:bit. ![](/static/mb/lessons/seismograph22.png) diff --git a/docs/projects/hack-your-headphones-challenges.md b/docs/projects/hack-your-headphones-challenges.md index bcc7ddb8..e1bbfb0e 100644 --- a/docs/projects/hack-your-headphones-challenges.md +++ b/docs/projects/hack-your-headphones-challenges.md @@ -69,7 +69,7 @@ input.onButtonPressed(Button.A, () => { }); ``` -* click *compile* and run your code on the micro:bit. +* click **Download** and run your code on the micro:bit. ### ~button /projects/banana-keyboard NEXT: Banana Keyboard diff --git a/docs/projects/messenger.md b/docs/projects/messenger.md index 588382ab..dfe68064 100644 --- a/docs/projects/messenger.md +++ b/docs/projects/messenger.md @@ -29,7 +29,7 @@ radio.onDataReceived(() => { }) ``` -Compile the program and **upload the same .hex file to 2 devices!** +Download the program and **upload the same .hex file to 2 devices!** ## Step 3