pxt-microbit 8.0.17 → 8.0.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/built/block-tests.js +1 -1
- package/built/sim.d.ts +2 -2
- package/built/target-strings.json +1 -1
- package/built/target.js +1 -1
- package/built/target.json +1 -1
- package/built/targetlight.js +1 -1
- package/built/targetlight.json +1 -1
- package/built/web/rtlsemantic.css +1 -1
- package/built/web/semantic.css +1 -1
- package/docs/courses.md +0 -13
- package/docs/hero-banner.md +6 -0
- package/docs/microbit-org/createai.md +41 -0
- package/docs/microbit-org/data-logging.md +49 -0
- package/docs/microbit-org/feature-videos.md +71 -0
- package/docs/microbit-org/first-lessons.md +65 -0
- package/docs/microbit-org/make-it-code-it.md +57 -0
- package/docs/microbit-org/professional-development.md +65 -0
- package/docs/projects/SUMMARY.md +69 -28
- package/docs/projects.md +43 -7
- package/package.json +5 -5
- package/targetconfig.json +8 -2
package/docs/courses.md
CHANGED
|
@@ -2,19 +2,6 @@
|
|
|
2
2
|
|
|
3
3
|
A collection of courses and tutorials built for the @boardname@.
|
|
4
4
|
|
|
5
|
-
## First lessons with MakeCode and the micro:bit
|
|
6
|
-
|
|
7
|
-
A sequence of six beginner lessons, ideal for getting started with the micro:bit. Students will learn core computing concepts by making and coding engaging projects.
|
|
8
|
-
|
|
9
|
-
```codecard
|
|
10
|
-
[{
|
|
11
|
-
"name": "First Lessons",
|
|
12
|
-
"description": "A sequence of lessons from the Micro:bit Educational Foundation that provide a pathway through six projects, ideal for getting started with the micro:bit",
|
|
13
|
-
"url":"https://microbit.org/teach/lessons/first-lessons-with-makecode-and-the-microbit",
|
|
14
|
-
"imageUrl": "/static/courses/first-lessons.png"
|
|
15
|
-
}]
|
|
16
|
-
```
|
|
17
|
-
|
|
18
5
|
## Intro to Computer Science
|
|
19
6
|
|
|
20
7
|
MakeCode's course for learning Computer Science with the micro:bit. This is a 14 week computer science course for middle school grades 6-8.
|
package/docs/hero-banner.md
CHANGED
|
@@ -26,4 +26,10 @@ Here are some cool activities to get you started with your @boardname@!
|
|
|
26
26
|
* description: Track the soil moisture of your plants!
|
|
27
27
|
* imageUrl: /static/herogallery/soil-moisture.png
|
|
28
28
|
* url: /projects/soil-moisture
|
|
29
|
+
---
|
|
30
|
+
* name: micro:bit CreateAI
|
|
31
|
+
* description: micro:bit CreateAI
|
|
32
|
+
* imageUrl: /static/herogallery/microbit-createai.png
|
|
33
|
+
* url: https://createai.microbit.org/
|
|
34
|
+
* cardType: link
|
|
29
35
|
### ~
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
# CreateAI
|
|
2
|
+
|
|
3
|
+
Projects to get learners started quickly with AI and machine learning on the micro:bit.
|
|
4
|
+
|
|
5
|
+
## Projects
|
|
6
|
+
|
|
7
|
+
```codecard
|
|
8
|
+
[{
|
|
9
|
+
"name": "AI storytelling friend",
|
|
10
|
+
"description": "Use storytelling to introduce AI.",
|
|
11
|
+
"url": "https://microbit.org/projects/make-it-code-it/ai-storytelling-friend/",
|
|
12
|
+
"imageUrl":"/static/microbit-org/createai/storytelling-friend.png",
|
|
13
|
+
"label": " ",
|
|
14
|
+
"labelClass": "black microbit-ribbon large",
|
|
15
|
+
"cardType": "link"
|
|
16
|
+
}, {
|
|
17
|
+
"name": "Simple AI exercise timer",
|
|
18
|
+
"description": "Make a smart exercise timer using AI.",
|
|
19
|
+
"url": "https://microbit.org/projects/make-it-code-it/simple-ai-exercise-timer/",
|
|
20
|
+
"imageUrl":"/static/microbit-org/createai/simple-exercise-timer.png",
|
|
21
|
+
"label": " ",
|
|
22
|
+
"labelClass": "black microbit-ribbon large",
|
|
23
|
+
"cardType": "link"
|
|
24
|
+
}, {
|
|
25
|
+
"name": "AI activity timer",
|
|
26
|
+
"description": "Use AI to detect and time specific activities.",
|
|
27
|
+
"url": "https://microbit.org/projects/make-it-code-it/ai-activity-timer/",
|
|
28
|
+
"imageUrl":"/static/microbit-org/createai/activity-timer.png",
|
|
29
|
+
"label": " ",
|
|
30
|
+
"labelClass": "black microbit-ribbon large",
|
|
31
|
+
"cardType": "link"
|
|
32
|
+
}, {
|
|
33
|
+
"name": "More about CreateAI",
|
|
34
|
+
"description": "Explore AI on and offscreen with tools, resources and more.",
|
|
35
|
+
"url": "https://microbit.org/ai/",
|
|
36
|
+
"imageUrl":"/static/microbit-org/createai/more-about.png",
|
|
37
|
+
"label": " ",
|
|
38
|
+
"labelClass": "black microbit-ribbon large",
|
|
39
|
+
"cardType": "link"
|
|
40
|
+
}]
|
|
41
|
+
```
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# Data Logging Examples
|
|
2
|
+
|
|
3
|
+
Use the micro:bit’s data logging feature in science and other experiments.
|
|
4
|
+
|
|
5
|
+
## Projects
|
|
6
|
+
|
|
7
|
+
```codecard
|
|
8
|
+
[{
|
|
9
|
+
"name": "Traffic survey data logger",
|
|
10
|
+
"description": "Survey traffic, wildlife or anything around you!",
|
|
11
|
+
"url": "https://makecode.microbit.org/_gh4CetMLC5i4",
|
|
12
|
+
"imageUrl": "/static/microbit-org/data-logging/traffic-survey.png",
|
|
13
|
+
"label": " ",
|
|
14
|
+
"labelClass": "black microbit-ribbon large",
|
|
15
|
+
"cardType": "sharedExample"
|
|
16
|
+
}, {
|
|
17
|
+
"name": "Kick strength data logger",
|
|
18
|
+
"description": "Use data science to improve your sports skills.",
|
|
19
|
+
"url": "https://makecode.microbit.org/_drsVdM9dccxq",
|
|
20
|
+
"imageUrl": "/static/microbit-org/data-logging/kick-strength.png",
|
|
21
|
+
"label": " ",
|
|
22
|
+
"labelClass": "black microbit-ribbon large",
|
|
23
|
+
"cardType": "sharedExample"
|
|
24
|
+
}, {
|
|
25
|
+
"name": "Environment data logger",
|
|
26
|
+
"description": "Record and study data about the world around you.",
|
|
27
|
+
"url": "https://makecode.microbit.org/_WbKetCEgVDX2",
|
|
28
|
+
"imageUrl": "/static/microbit-org/data-logging/environment.png",
|
|
29
|
+
"label": " ",
|
|
30
|
+
"labelClass": "black microbit-ribbon large",
|
|
31
|
+
"cardType": "sharedExample"
|
|
32
|
+
}, {
|
|
33
|
+
"name": "Solar panel experiment",
|
|
34
|
+
"description": "Decide where to put a solar panel with your micro:bit.",
|
|
35
|
+
"url": "https://makecode.microbit.org/_7L8hXcRUDCPF",
|
|
36
|
+
"imageUrl": "/static/microbit-org/data-logging/solar-panel.png",
|
|
37
|
+
"label": " ",
|
|
38
|
+
"labelClass": "black microbit-ribbon large",
|
|
39
|
+
"cardType": "sharedExample"
|
|
40
|
+
}, {
|
|
41
|
+
"name": "Movement data logger",
|
|
42
|
+
"description": "Use data logging to make a better step counter.",
|
|
43
|
+
"url": "https://makecode.microbit.org/_6ftECdEohfpb",
|
|
44
|
+
"imageUrl": "/static/microbit-org/data-logging/movement.png",
|
|
45
|
+
"label": " ",
|
|
46
|
+
"labelClass": "black microbit-ribbon large",
|
|
47
|
+
"cardType": "sharedExample"
|
|
48
|
+
}]
|
|
49
|
+
```
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
# Introductory micro:bit Feature Videos
|
|
2
|
+
|
|
3
|
+
Short animated videos to share with learners.
|
|
4
|
+
|
|
5
|
+
## Videos
|
|
6
|
+
|
|
7
|
+
```codecard
|
|
8
|
+
[{
|
|
9
|
+
"name": "Introduction to the BBC micro:bit",
|
|
10
|
+
"description": "Meet the BBC micro:bit.",
|
|
11
|
+
"label": " ",
|
|
12
|
+
"labelClass": "black microbit-ribbon large",
|
|
13
|
+
"youTubeId": "u2u7UJSRuko",
|
|
14
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
15
|
+
"imageUrl": "/static/microbit-org/feature-videos/introduction.png"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"name": "Input and output devices",
|
|
19
|
+
"description": "How the BBC micro:bit helps you understand computer input and output devices.",
|
|
20
|
+
"label": " ",
|
|
21
|
+
"labelClass": "black microbit-ribbon large",
|
|
22
|
+
"youTubeId": "NkoS2JXaBuM",
|
|
23
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
24
|
+
"imageUrl": "/static/microbit-org/feature-videos/input-output.png"
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"name": "Processor",
|
|
28
|
+
"description": "The processor is the most important part of your BBC micro:bit - watch this video to discover why they are essential parts of any computer, phone or tablet.",
|
|
29
|
+
"label": " ",
|
|
30
|
+
"labelClass": "black microbit-ribbon large",
|
|
31
|
+
"youTubeId": "Y9tk07CzTAA",
|
|
32
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
33
|
+
"imageUrl": "/static/microbit-org/feature-videos/processor.png"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"name": "LEDs",
|
|
37
|
+
"description": "LED lights are perfect for the BBC micro:bit - watch this video to find out why.",
|
|
38
|
+
"label": " ",
|
|
39
|
+
"labelClass": "black microbit-ribbon large",
|
|
40
|
+
"youTubeId": "eRhlaXqT-0w",
|
|
41
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
42
|
+
"imageUrl": "/static/microbit-org/feature-videos/leds.png"
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
"name": "Buttons",
|
|
46
|
+
"description": "The buttons are probably the first input device you'll use on BBC micro:bit - this video tells you how you can use them. ",
|
|
47
|
+
"label": " ",
|
|
48
|
+
"labelClass": "black microbit-ribbon large",
|
|
49
|
+
"youTubeId": "hnT0qHM3_hQ",
|
|
50
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
51
|
+
"imageUrl": "/static/microbit-org/feature-videos/buttons.png"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"name": "Accelerometer",
|
|
55
|
+
"description": "Like a phone, the micro:bit can sense movement using its accelerometer. This video tells you more about how you can use it.",
|
|
56
|
+
"label": " ",
|
|
57
|
+
"labelClass": "black microbit-ribbon large",
|
|
58
|
+
"youTubeId": "UT35ODxvmS0",
|
|
59
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
60
|
+
"imageUrl": "/static/microbit-org/feature-videos/accelerometer.png"
|
|
61
|
+
},
|
|
62
|
+
{
|
|
63
|
+
"name": "Full playlist",
|
|
64
|
+
"description": "Watch videos on all the features of the micro:bit.",
|
|
65
|
+
"label": " ",
|
|
66
|
+
"labelClass": "black microbit-ribbon large",
|
|
67
|
+
"url": "https://www.youtube.com/playlist?list=PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
68
|
+
"youTubePlaylistId": "PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr",
|
|
69
|
+
"imageUrl": "/static/microbit-org/feature-videos/full-playlist.png"
|
|
70
|
+
}]
|
|
71
|
+
```
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# First Lessons with MakeCode and the micro:bit
|
|
2
|
+
|
|
3
|
+
Six projects featured in our starter [lessons](https://microbit.org/teach/lessons/first-lessons-with-makecode-and-the-microbit/) and companion [PD course](https://microbit.thinkific.com/courses/first-lessons-with-makecode-and-the-micro-bit).
|
|
4
|
+
|
|
5
|
+
## Lessons
|
|
6
|
+
|
|
7
|
+
```codecard
|
|
8
|
+
[{
|
|
9
|
+
"name": "First lessons overview",
|
|
10
|
+
"description": "A sequence of lessons from the Micro:bit Educational Foundation that provide a pathway through six projects, ideal for getting started with the micro:bit",
|
|
11
|
+
"url":"https://microbit.org/teach/lessons/first-lessons-with-makecode-and-the-microbit",
|
|
12
|
+
"imageUrl": "/static/microbit-org/first-lessons/overview.png",
|
|
13
|
+
"label": " ",
|
|
14
|
+
"labelClass": "black microbit-ribbon large",
|
|
15
|
+
"cardType": "link"
|
|
16
|
+
}, {
|
|
17
|
+
"name": "Name badge",
|
|
18
|
+
"description": "Students create their first programs and transfer them to their micro:bits.",
|
|
19
|
+
"url": "https://microbit.org/teach/lessons/name-badge/",
|
|
20
|
+
"imageUrl": "/static/microbit-org/first-lessons/name-badge.png",
|
|
21
|
+
"label": " ",
|
|
22
|
+
"labelClass": "black microbit-ribbon large",
|
|
23
|
+
"cardType": "link"
|
|
24
|
+
}, {
|
|
25
|
+
"name": "Beating heart",
|
|
26
|
+
"description": "Create a simple animation to learn about sequence and simple loops.",
|
|
27
|
+
"url": "https://microbit.org/teach/lessons/beating-heart/",
|
|
28
|
+
"imageUrl": "/static/microbit-org/first-lessons/beating-heart.png",
|
|
29
|
+
"label": " ",
|
|
30
|
+
"labelClass": "black microbit-ribbon large",
|
|
31
|
+
"cardType": "link"
|
|
32
|
+
}, {
|
|
33
|
+
"name": "Emotion badge",
|
|
34
|
+
"description": "Start learning about inputs and outputs using buttons and icons on the display.",
|
|
35
|
+
"url": "https://microbit.org/teach/lessons/emotion-badge/",
|
|
36
|
+
"imageUrl": "/static/microbit-org/first-lessons/emotion-badge.png",
|
|
37
|
+
"label": " ",
|
|
38
|
+
"labelClass": "black microbit-ribbon large",
|
|
39
|
+
"cardType": "link"
|
|
40
|
+
}, {
|
|
41
|
+
"name": "Step counter",
|
|
42
|
+
"description": "Introduce variables to track your step count and begin to use the accelerometer input.",
|
|
43
|
+
"url": "https://microbit.org/teach/lessons/step-counter/",
|
|
44
|
+
"imageUrl": "/static/microbit-org/first-lessons/step-counter.png",
|
|
45
|
+
"label": " ",
|
|
46
|
+
"labelClass": "black microbit-ribbon large",
|
|
47
|
+
"cardType": "link"
|
|
48
|
+
}, {
|
|
49
|
+
"name": "Nightlight",
|
|
50
|
+
"description": "Make an automatic nightlight and discover how logic, conditionals and inputs and outputs combine to make a simple control system.",
|
|
51
|
+
"url": "https://microbit.org/teach/lessons/nightlight/",
|
|
52
|
+
"imageUrl": "/static/microbit-org/first-lessons/nightlight.png",
|
|
53
|
+
"label": " ",
|
|
54
|
+
"labelClass": "black microbit-ribbon large",
|
|
55
|
+
"cardType": "link"
|
|
56
|
+
}, {
|
|
57
|
+
"name": "Rock, paper, scissors",
|
|
58
|
+
"description": "Combine skills from the previous lessons to turn your micro:bit into an electronic simulation of a popular game of chance.",
|
|
59
|
+
"url": "https://microbit.org/teach/lessons/rock-paper-scissors/",
|
|
60
|
+
"imageUrl": "/static/microbit-org/first-lessons/rock-paper-scissors.png",
|
|
61
|
+
"label": " ",
|
|
62
|
+
"labelClass": "black microbit-ribbon large",
|
|
63
|
+
"cardType": "link"
|
|
64
|
+
}]
|
|
65
|
+
```
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
# Make it: code it Examples
|
|
2
|
+
|
|
3
|
+
Projects you can try out straight away or code from scratch.
|
|
4
|
+
|
|
5
|
+
## Projects
|
|
6
|
+
|
|
7
|
+
```codecard
|
|
8
|
+
[{
|
|
9
|
+
"name": "Dance steps",
|
|
10
|
+
"description": "Use loops to help create a dance routine.",
|
|
11
|
+
"url": "https://makecode.microbit.org/_edAayo1kC04Y",
|
|
12
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/dance-steps.png",
|
|
13
|
+
"label": " ",
|
|
14
|
+
"labelClass": "black microbit-ribbon large",
|
|
15
|
+
"cardType": "sharedExample"
|
|
16
|
+
}, {
|
|
17
|
+
"name": "Poetry generator",
|
|
18
|
+
"description": "Generate random phrases to use in a poem.",
|
|
19
|
+
"url": "https://makecode.microbit.org/_D2fETcEuMCvX",
|
|
20
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/poetry-generator.png",
|
|
21
|
+
"label": " ",
|
|
22
|
+
"labelClass": "black microbit-ribbon large",
|
|
23
|
+
"cardType": "sharedExample"
|
|
24
|
+
}, {
|
|
25
|
+
"name": "Activity picker",
|
|
26
|
+
"description": "Can't agree on what to do? Let your micro:bit decide!",
|
|
27
|
+
"url": "https://makecode.microbit.org/_gXM8uh850CCe",
|
|
28
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/activity-picker.png",
|
|
29
|
+
"label": " ",
|
|
30
|
+
"labelClass": "black microbit-ribbon large",
|
|
31
|
+
"cardType": "sharedExample"
|
|
32
|
+
}, {
|
|
33
|
+
"name": "Calming LEDs",
|
|
34
|
+
"description": "Regulate your breathing and relax.",
|
|
35
|
+
"url": "https://makecode.microbit.org/_baC2XD9E1aW7",
|
|
36
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/calming-leds.png",
|
|
37
|
+
"label": " ",
|
|
38
|
+
"labelClass": "black microbit-ribbon large",
|
|
39
|
+
"cardType": "sharedExample"
|
|
40
|
+
}, {
|
|
41
|
+
"name": "Funny voice recorder",
|
|
42
|
+
"description": "Turn your micro:bit into a voice changer.",
|
|
43
|
+
"url": "https://makecode.microbit.org/_9TY7rdVAV5Fd",
|
|
44
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/funny-voice.png",
|
|
45
|
+
"label": " ",
|
|
46
|
+
"labelClass": "black microbit-ribbon large",
|
|
47
|
+
"cardType": "sharedExample"
|
|
48
|
+
}, {
|
|
49
|
+
"name": "Distance calculator",
|
|
50
|
+
"description": "Use your micro:bit to measure distances.",
|
|
51
|
+
"url": "https://makecode.microbit.org/_DACivW4iMe0t",
|
|
52
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/distance-calculator.png",
|
|
53
|
+
"label": " ",
|
|
54
|
+
"labelClass": "black microbit-ribbon large",
|
|
55
|
+
"cardType": "sharedExample"
|
|
56
|
+
}]
|
|
57
|
+
```
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
# Educator Professional Development
|
|
2
|
+
|
|
3
|
+
Professional development courses from the Micro:bit Educational Foundation.
|
|
4
|
+
|
|
5
|
+
## Courses
|
|
6
|
+
|
|
7
|
+
```codecard
|
|
8
|
+
[{
|
|
9
|
+
"name": "First lessons with MakeCode and the micro:bit",
|
|
10
|
+
"description": "Introduces a sequence of six projects that are perfect to introduce your learners to coding on the micro:bit using Microsoft MakeCode.",
|
|
11
|
+
"url": "https://microbit.thinkific.com/courses/first-lessons-with-makecode-and-the-micro-bit",
|
|
12
|
+
"imageUrl": "/static/microbit-org/professional-development/first-lessons.png",
|
|
13
|
+
"label": " ",
|
|
14
|
+
"labelClass": "black microbit-ribbon large",
|
|
15
|
+
"cardType": "link"
|
|
16
|
+
}, {
|
|
17
|
+
"name": "Gesture and movement",
|
|
18
|
+
"description": "Explores how to use the micro:bit’s accelerometer sensor in code. Using built-in gesture recognition, you’ll make projects that respond when you shake the micro:bit or rotate it in different directions like a phone or tablet screen.",
|
|
19
|
+
"url": "https://microbit.thinkific.com/courses/gesture-and-movement",
|
|
20
|
+
"imageUrl": "/static/microbit-org/professional-development/gesture-movement.png",
|
|
21
|
+
"label": " ",
|
|
22
|
+
"labelClass": "black microbit-ribbon large",
|
|
23
|
+
"cardType": "link"
|
|
24
|
+
}, {
|
|
25
|
+
"name": "Science exploration with the micro:bit ",
|
|
26
|
+
"description": "Introduces how to use the BBC micro:bit as an effective tool to support hands-on science investigations in your classroom. It highlights four engaging, practical science investigations that you can take back to your classroom.",
|
|
27
|
+
"url": "https://microbit.thinkific.com/courses/science-exploration-with-the-micro-bit",
|
|
28
|
+
"imageUrl": "/static/microbit-org/professional-development/science-exploration.png",
|
|
29
|
+
"label": " ",
|
|
30
|
+
"labelClass": "black microbit-ribbon large",
|
|
31
|
+
"cardType": "link"
|
|
32
|
+
}, {
|
|
33
|
+
"name": "Making and sensing sound",
|
|
34
|
+
"description": "Explore music and creative sound-making with the micro:bit. We’ll also show how you can create code that uses the micro:bit V2’s built-in microphone to respond to and measure sound.",
|
|
35
|
+
"url": "https://microbit.thinkific.com/courses/sensing-and-making-sound",
|
|
36
|
+
"imageUrl": "/static/microbit-org/professional-development/sensing-making-sound.png",
|
|
37
|
+
"label": " ",
|
|
38
|
+
"labelClass": "black microbit-ribbon large",
|
|
39
|
+
"cardType": "link"
|
|
40
|
+
}, {
|
|
41
|
+
"name": "Introducing loops",
|
|
42
|
+
"description": "Uses the micro:bit to show how loops repeat sets of instructions to make your code do more. We explain the difference between infinite and numbered loops with practical examples.",
|
|
43
|
+
"url": "https://microbit.thinkific.com/courses/introducing-loops",
|
|
44
|
+
"imageUrl": "/static/microbit-org/professional-development/introducing-loops.png",
|
|
45
|
+
"label": " ",
|
|
46
|
+
"labelClass": "black microbit-ribbon large",
|
|
47
|
+
"cardType": "link"
|
|
48
|
+
}, {
|
|
49
|
+
"name": "Practical tips for teachers",
|
|
50
|
+
"description": "Introduces the basics of what you need to get started teaching with the micro:bit, some practical suggestions and top tips for getting the most from your lesson time.",
|
|
51
|
+
"url": "https://microbit.thinkific.com/courses/practical-tips",
|
|
52
|
+
"imageUrl": "/static/microbit-org/professional-development/practical-tips.png",
|
|
53
|
+
"label": " ",
|
|
54
|
+
"labelClass": "black microbit-ribbon large",
|
|
55
|
+
"cardType": "link"
|
|
56
|
+
}, {
|
|
57
|
+
"name": "All courses",
|
|
58
|
+
"description": "All professional development courses from the Micro:bit Educational Foundation.",
|
|
59
|
+
"url": "https://microbit.thinkific.com/",
|
|
60
|
+
"imageUrl": "/static/microbit-org/professional-development/all-courses.png",
|
|
61
|
+
"label": " ",
|
|
62
|
+
"labelClass": "black microbit-ribbon large",
|
|
63
|
+
"cardType": "link"
|
|
64
|
+
}]
|
|
65
|
+
```
|
package/docs/projects/SUMMARY.md
CHANGED
|
@@ -14,6 +14,46 @@
|
|
|
14
14
|
* [Clap Lights](/projects/v2-clap-lights)
|
|
15
15
|
* [Blow Away](/projects/v2-blow-away)
|
|
16
16
|
* [Cat Napping](/projects/v2-cat-napping)
|
|
17
|
+
* [Games](/projects/games)
|
|
18
|
+
* [Rock Paper Scissors](/projects/rock-paper-scissors)
|
|
19
|
+
* [Rock Paper Scissors V2](/projects/rock-paper-scissors-v2)
|
|
20
|
+
* [Coin Flipper](/projects/coin-flipper)
|
|
21
|
+
* [7 seconds](/projects/7-seconds)
|
|
22
|
+
* [Hot Potato](/projects/hot-potato)
|
|
23
|
+
* [Heads Guess!](/projects/heads-guess)
|
|
24
|
+
* [Reaction Time](/projects/reaction-time)
|
|
25
|
+
* [Tug-Of-LED](/projects/tug-of-led)
|
|
26
|
+
* [Magic Button Trick](/projects/magic-button-trick)
|
|
27
|
+
* [Snap the dot](/projects/snap-the-dot)
|
|
28
|
+
* [Salute!](/projects/salute)
|
|
29
|
+
* [Karel the LED](/projects/karel)
|
|
30
|
+
* [Crashy bird](/projects/crashy-bird)
|
|
31
|
+
* [Make it: code it Examples](/microbit-org/make-it-code-it)
|
|
32
|
+
* [Dance steps](https://makecode.microbit.org/_edAayo1kC04Y)
|
|
33
|
+
* [Poetry generator](https://makecode.microbit.org/_D2fETcEuMCvX)
|
|
34
|
+
* [Activity picker](https://makecode.microbit.org/_gXM8uh850CCe)
|
|
35
|
+
* [Calming LEDs](https://makecode.microbit.org/_baC2XD9E1aW7)
|
|
36
|
+
* [Funny voice recorder](https://makecode.microbit.org/_9TY7rdVAV5Fd)
|
|
37
|
+
* [Distance calculator](https://makecode.microbit.org/_DACivW4iMe0t)
|
|
38
|
+
* [Radio Games](/projects/radio-games)
|
|
39
|
+
* [Multi Editors](https://makecode.microbit.org/---multi)
|
|
40
|
+
* [Multi Dice](/projects/multi-dice)
|
|
41
|
+
* [Mood Radio](/projects/mood-radio)
|
|
42
|
+
* [Tele-potato](/projects/tele-potato)
|
|
43
|
+
* [Fireflies](/projects/fireflies)
|
|
44
|
+
* [Hot or Cold](/projects/hot-or-cold-multi)
|
|
45
|
+
* [Red Light Green Light](/projects/red-light-green-light)
|
|
46
|
+
* [Voting Machine](/projects/voting-machine)
|
|
47
|
+
* [Rock Paper Scissors Teams](/projects/rps-teams)
|
|
48
|
+
* [Micro:Coin](/projects/micro-coin)
|
|
49
|
+
* [Infection](/projects/infection)
|
|
50
|
+
* [Best Friends](/projects/best-friends)
|
|
51
|
+
* [Data Logging Examples](/microbit-org/data-logging)
|
|
52
|
+
* [Traffic survey data logger](https://makecode.microbit.org/_gh4CetMLC5i4)
|
|
53
|
+
* [Kick strength data logger](https://makecode.microbit.org/_drsVdM9dccxq)
|
|
54
|
+
* [Environment data logger](https://makecode.microbit.org/_WbKetCEgVDX2)
|
|
55
|
+
* [Solar panel experiment](https://makecode.microbit.org/_7L8hXcRUDCPF)
|
|
56
|
+
* [Movement data logger](https://makecode.microbit.org/_6ftECdEohfpb)
|
|
17
57
|
* [Live Coding](/live-coding)
|
|
18
58
|
* [Flashing Heart](https://youtu.be/NvEOKZ8wh9s)
|
|
19
59
|
* [Name Tag](https://youtu.be/xpRI5jjQ31E)
|
|
@@ -48,33 +88,6 @@
|
|
|
48
88
|
* [Red Light Green Light](https://youtu.be/Cm22diu8CFA)
|
|
49
89
|
* [Stopwatch progress](https://youtu.be/2aAcBP2xcaI)
|
|
50
90
|
* [PlayList](https://www.youtube.com/playlist?list=PLMMBk9hE-SepocOwueEtTDyOPI_TBE9yC)
|
|
51
|
-
* [Games](/projects/games)
|
|
52
|
-
* [Rock Paper Scissors](/projects/rock-paper-scissors)
|
|
53
|
-
* [Rock Paper Scissors V2](/projects/rock-paper-scissors-v2)
|
|
54
|
-
* [Coin Flipper](/projects/coin-flipper)
|
|
55
|
-
* [7 seconds](/projects/7-seconds)
|
|
56
|
-
* [Hot Potato](/projects/hot-potato)
|
|
57
|
-
* [Heads Guess!](/projects/heads-guess)
|
|
58
|
-
* [Reaction Time](/projects/reaction-time)
|
|
59
|
-
* [Tug-Of-LED](/projects/tug-of-led)
|
|
60
|
-
* [Magic Button Trick](/projects/magic-button-trick)
|
|
61
|
-
* [Snap the dot](/projects/snap-the-dot)
|
|
62
|
-
* [Salute!](/projects/salute)
|
|
63
|
-
* [Karel the LED](/projects/karel)
|
|
64
|
-
* [Crashy bird](/projects/crashy-bird)
|
|
65
|
-
* [Radio Games](/projects/radio-games)
|
|
66
|
-
* [Multi Editors](https://makecode.microbit.org/---multi)
|
|
67
|
-
* [Multi Dice](/projects/multi-dice)
|
|
68
|
-
* [Mood Radio](/projects/mood-radio)
|
|
69
|
-
* [Tele-potato](/projects/tele-potato)
|
|
70
|
-
* [Fireflies](/projects/fireflies)
|
|
71
|
-
* [Hot or Cold](/projects/hot-or-cold-multi)
|
|
72
|
-
* [Red Light Green Light](/projects/red-light-green-light)
|
|
73
|
-
* [Voting Machine](/projects/voting-machine)
|
|
74
|
-
* [Rock Paper Scissors Teams](/projects/rps-teams)
|
|
75
|
-
* [Micro:Coin](/projects/micro-coin)
|
|
76
|
-
* [Infection](/projects/infection)
|
|
77
|
-
* [Best Friends](/projects/best-friends)
|
|
78
91
|
* [Fashion](/projects/fashion)
|
|
79
92
|
* [Duct Tape Wallet](/projects/wallet)
|
|
80
93
|
* [Watch](/projects/watch)
|
|
@@ -124,8 +137,20 @@
|
|
|
124
137
|
* [Conditional Loops](/courses/blocks-to-javascript/conditional-loops)
|
|
125
138
|
* [Command Responder](/courses/blocks-to-javascript/command-responder)
|
|
126
139
|
* [Writing Functions](/courses/blocks-to-javascript/writing-functions)
|
|
140
|
+
* [First Lessons with MakeCode and the micro:bit](/microbit-org/first-lessons)
|
|
141
|
+
* [First lessons overview](https://microbit.org/teach/lessons/first-lessons-with-makecode-and-the-microbit)
|
|
142
|
+
* [Name badge](https://microbit.org/teach/lessons/name-badge/)
|
|
143
|
+
* [Beating heart](https://microbit.org/teach/lessons/beating-heart/)
|
|
144
|
+
* [Emotion badge](https://microbit.org/teach/lessons/emotion-badge/)
|
|
145
|
+
* [Step counter](https://microbit.org/teach/lessons/step-counter/)
|
|
146
|
+
* [Nightlight](https://microbit.org/teach/lessons/nightlight/)
|
|
147
|
+
* [Rock, paper, scissors](https://microbit.org/teach/lessons/rock-paper-scissors/)
|
|
148
|
+
* [CreateAI](/microbit-org/createai)
|
|
149
|
+
* [AI storytelling friend](https://microbit.org/projects/make-it-code-it/ai-storytelling-friend/)
|
|
150
|
+
* [Simple AI exercise timer](https://microbit.org/projects/make-it-code-it/simple-ai-exercise-timer/)
|
|
151
|
+
* [AI activity timer](https://microbit.org/projects/make-it-code-it/ai-activity-timer/)
|
|
152
|
+
* [More about CreateAI](https://microbit.org/ai/)
|
|
127
153
|
* [Courses](/courses)
|
|
128
|
-
* [First Lessons](https://microbit.org/teach/lessons/first-lessons-with-makecode-and-the-microbit)
|
|
129
154
|
* [Intro to CS Online](/courses/csintro)
|
|
130
155
|
* [Intro to CS Classroom](/courses/csintro-educator)
|
|
131
156
|
* [Science Experiments](/courses/ucp-science)
|
|
@@ -158,6 +183,14 @@
|
|
|
158
183
|
* [MicroCode for the new micro:bit (V2)](/microcode)
|
|
159
184
|
* [Getting Started](https://microbit-apps.github.io/microcode-classic/docs/manual)
|
|
160
185
|
* [Samples](https://microbit-apps.github.io/microcode-classic/docs/samples)
|
|
186
|
+
* [Introductory micro:bit Feature Videos](/microbit-org/feature-videos)
|
|
187
|
+
* [Introduction to the BBC micro:bit](https://youtu.be/u2u7UJSRuko)
|
|
188
|
+
* [Input and output devices](https://youtu.be/NkoS2JXaBuM)
|
|
189
|
+
* [Processor](https://youtu.be/Y9tk07CzTAA)
|
|
190
|
+
* [LEDs](https://youtu.be/eRhlaXqT-0w)
|
|
191
|
+
* [Buttons](https://youtu.be/hnT0qHM3_hQ)
|
|
192
|
+
* [Accelerometer](https://youtu.be/UT35ODxvmS0)
|
|
193
|
+
* [Full playlist](https://www.youtube.com/playlist?list=PLEo0hMrjdofusveMscRFN9FeqKzDBzuXr)
|
|
161
194
|
* [Behind the MakeCode Hardware](/behind-the-makecode-hardware)
|
|
162
195
|
* [LEDs](https://youtu.be/qqBmvHD5bCw)
|
|
163
196
|
* [Buttons](https://youtu.be/t_Qujjd_38o)
|
|
@@ -177,6 +210,14 @@
|
|
|
177
210
|
* [Egg Drop](https://youtu.be/tnDJFdC3Nd4)
|
|
178
211
|
* [Battery Tester](https://youtu.be/gdlc34nhjK4)
|
|
179
212
|
* [Rocket Acceleration](https://youtu.be/m9ntqxh8FvQ)
|
|
213
|
+
* [Educator Professional Development](/microbit-org/professional-development)
|
|
214
|
+
* [First lessons with MakeCode and the micro:bit](https://microbit.thinkific.com/courses/first-lessons-with-makecode-and-the-micro-bit)
|
|
215
|
+
* [Gesture and movement](https://microbit.thinkific.com/courses/gesture-and-movement)
|
|
216
|
+
* [Science exploration with the micro:bit ](https://microbit.thinkific.com/courses/science-exploration-with-the-micro-bit)
|
|
217
|
+
* [Making and sensing sound](https://microbit.thinkific.com/courses/sensing-and-making-sound)
|
|
218
|
+
* [Introducing loops](https://microbit.thinkific.com/courses/introducing-loops)
|
|
219
|
+
* [Practical tips for teachers](https://microbit.thinkific.com/courses/practical-tips)
|
|
220
|
+
* [All courses](https://microbit.thinkific.com/)
|
|
180
221
|
* [Coding for Teachers](/coding-for-teachers)
|
|
181
222
|
* [Part 1 - Introduction](https://youtu.be/hr8O_pslp8Q)
|
|
182
223
|
* [Part 2 - Connect & Code](https://youtu.be/_cTHlQXwEO4)
|
package/docs/projects.md
CHANGED
|
@@ -13,21 +13,31 @@
|
|
|
13
13
|
"url": "/tutorials-v2",
|
|
14
14
|
"imageUrl": "/static/mb/projects/pet-hamster.png"
|
|
15
15
|
},
|
|
16
|
-
{
|
|
17
|
-
"name": "Live Coding",
|
|
18
|
-
"url": "/live-coding",
|
|
19
|
-
"imageUrl": "/static/live-coding/NvEOKZ8wh9s.jpg"
|
|
20
|
-
},
|
|
21
16
|
{
|
|
22
17
|
"name": "Games",
|
|
23
18
|
"url": "/projects/games",
|
|
24
19
|
"imageUrl": "/static/mb/projects/a4-motion.png"
|
|
25
20
|
},
|
|
21
|
+
{
|
|
22
|
+
"name": "Make it: code it Examples",
|
|
23
|
+
"url": "/microbit-org/make-it-code-it",
|
|
24
|
+
"imageUrl": "/static/microbit-org/make-it-code-it/dance-steps.png"
|
|
25
|
+
},
|
|
26
26
|
{
|
|
27
27
|
"name": "Radio Games",
|
|
28
28
|
"url": "/projects/radio-games",
|
|
29
29
|
"imageUrl": "/static/multi.png"
|
|
30
30
|
},
|
|
31
|
+
{
|
|
32
|
+
"name": "Data Logging Examples",
|
|
33
|
+
"url": "/microbit-org/data-logging",
|
|
34
|
+
"imageUrl": "/static/microbit-org/data-logging/traffic-survey.png"
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"name": "Live Coding",
|
|
38
|
+
"url": "/live-coding",
|
|
39
|
+
"imageUrl": "/static/live-coding/NvEOKZ8wh9s.jpg"
|
|
40
|
+
},
|
|
31
41
|
{
|
|
32
42
|
"name": "Fashion",
|
|
33
43
|
"url": "/projects/fashion",
|
|
@@ -63,10 +73,20 @@
|
|
|
63
73
|
"url": "/courses/blocks-to-javascript",
|
|
64
74
|
"imageUrl": "/static/courses/blocks-to-javascript/hello-javascript.png"
|
|
65
75
|
},
|
|
76
|
+
{
|
|
77
|
+
"name": "First Lessons with MakeCode and the micro:bit",
|
|
78
|
+
"url": "/microbit-org/first-lessons",
|
|
79
|
+
"imageUrl": "/static/microbit-org/first-lessons/overview.png"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"name": "CreateAI",
|
|
83
|
+
"url": "/microbit-org/createai",
|
|
84
|
+
"imageUrl": "/static/microbit-org/createai/storytelling-friend.png"
|
|
85
|
+
},
|
|
66
86
|
{
|
|
67
87
|
"name": "Courses",
|
|
68
88
|
"url": "/courses",
|
|
69
|
-
"imageUrl": "/static/courses/
|
|
89
|
+
"imageUrl": "/static/courses/csintro.jpg"
|
|
70
90
|
},
|
|
71
91
|
{
|
|
72
92
|
"name": "Jacdac",
|
|
@@ -78,6 +98,11 @@
|
|
|
78
98
|
"url": "/microcode",
|
|
79
99
|
"imageUrl": "/static/microcode/home.png"
|
|
80
100
|
},
|
|
101
|
+
{
|
|
102
|
+
"name": "Introductory micro:bit Feature Videos",
|
|
103
|
+
"url": "/microbit-org/feature-videos",
|
|
104
|
+
"imageUrl": "/static/microbit-org/feature-videos/introduction.png"
|
|
105
|
+
},
|
|
81
106
|
{
|
|
82
107
|
"name": "Behind the MakeCode Hardware",
|
|
83
108
|
"url": "/behind-the-makecode-hardware",
|
|
@@ -88,6 +113,11 @@
|
|
|
88
113
|
"url": "/science-experiments",
|
|
89
114
|
"imageUrl": "/static/mb/science-experiments/data-collection.jpg"
|
|
90
115
|
},
|
|
116
|
+
{
|
|
117
|
+
"name": "Educator Professional Development",
|
|
118
|
+
"url": "/microbit-org/professional-development",
|
|
119
|
+
"imageUrl": "/static/microbit-org/professional-development/first-lessons.png"
|
|
120
|
+
},
|
|
91
121
|
{
|
|
92
122
|
"name": "Coding for Teachers",
|
|
93
123
|
"url": "/coding-for-teachers",
|
|
@@ -110,9 +140,11 @@
|
|
|
110
140
|
|
|
111
141
|
[Tutorials](/tutorials),
|
|
112
142
|
[Tutorials for the new micro:bit (V2)](/tutorials-v2),
|
|
113
|
-
[Live Coding](/live-coding),
|
|
114
143
|
[Games](/projects/games),
|
|
144
|
+
[Make it: code it Examples](/microbit-org/make-it-code-it),
|
|
115
145
|
[Radio Games](/projects/radio-games),
|
|
146
|
+
[Data Logging Examples](/microbit-org/data-logging),
|
|
147
|
+
[Live Coding](/live-coding),
|
|
116
148
|
[Fashion](/projects/fashion),
|
|
117
149
|
[Music](/projects/music),
|
|
118
150
|
[Toys](/projects/toys),
|
|
@@ -120,11 +152,15 @@
|
|
|
120
152
|
[Tools](/projects/tools),
|
|
121
153
|
[Turtle](/projects/turtle),
|
|
122
154
|
[Blocks to JavaScript](/courses/blocks-to-javascript),
|
|
155
|
+
[First Lessons with MakeCode and the micro:bit](/microbit-org/first-lessons),
|
|
156
|
+
[CreateAI](/microbit-org/createai),
|
|
123
157
|
[Courses](/courses),
|
|
124
158
|
[Jacdac](/jacdac),
|
|
125
159
|
[MicroCode for the new micro:bit (V2)](/microcode),
|
|
160
|
+
[Introductory micro:bit Feature Videos](/microbit-org/feature-videos),
|
|
126
161
|
[Behind the MakeCode Hardware](/behind-the-makecode-hardware),
|
|
127
162
|
[Science Experiments](/science-experiments),
|
|
163
|
+
[Educator Professional Development](/microbit-org/professional-development),
|
|
128
164
|
[Coding for Teachers](/coding-for-teachers),
|
|
129
165
|
[Coding Cards](/coding-cards),
|
|
130
166
|
[Deep Dive](/deep-dive)
|