diff --git a/docs/lessons.md b/docs/lessons.md index 8459bd7d..e7f80520 100644 --- a/docs/lessons.md +++ b/docs/lessons.md @@ -5,6 +5,14 @@ ### ~column +## O365 Integration +* [Graphing Temperature](/lessons/graph-temperature), create a charting app for simulating and measuring the actual temperature +* [Graphing Acceleration](/lessons/charting), create a charting app for simulating and measuring the acceleration applied to the micro:bit +* [Graphing Light Level](/lessons/light-level), create a charting app for simulating and measuring the amount of light measured by the micro:bit +* [Graphing Rotation](/lessons/rotation), create a charting app for simulating and measuring the amount of rotation by the micro:bit +* [Graphing Magnetic Force](/lessons/magnetic-force), create a charting app for simulating and measuring the magnetic force of objects +* [Probability App](/lessons/probability), create an charting app to demonstrate probability using any coin + ## Beginner * [Beautiful Image](/lessons/beautiful-image), show a beautiful image with show LEDs @@ -58,7 +66,6 @@ * [Pogo](/lessons/pogo), create a pogo game to test your jumping abilities ## Advanced -* [Charting](/lessons/charting), create a charting app between 2 BBC micro:bits * [Prank WiFi](/lessons/prank-wifi), create fake WiFi to trick your friends * [Speed Button](/lessons/speed-button), code a speed game with running time * [Headbands](/lessons/headbands), create a charades game with a collection of strings that hold the words diff --git a/docs/lessons/charting.md b/docs/lessons/charting.md index 28162c00..ca586fd3 100644 --- a/docs/lessons/charting.md +++ b/docs/lessons/charting.md @@ -1,6 +1,6 @@ # charting lesson -Measure the acceleration on the micro:bit in the "z" direction. +Create a charting app for simulating and measuring the acceleration applied to the micro:bit ## Topic diff --git a/docs/lessons/charting/activity.md b/docs/lessons/charting/activity.md index 4835edef..63332281 100644 --- a/docs/lessons/charting/activity.md +++ b/docs/lessons/charting/activity.md @@ -4,10 +4,11 @@ Measure the acceleration on the micro:bit in the "z" direction. ### ~avatar avatar -### ~ - Welcome! This activity will teach how to use the 1st micro:bit to chart the second micro:bit's acceleration in the "x" direction. Let's get started! + +### + Let's measure `acceleration (mg)` and then `send number`. `Acceleration` is measured in **milli-gravities**, so a value of -1000 is equivalent to -1g or -9.81m/s^2. We will be able to get the acceleration value (g-force), in the specified "x" dimension. `Send number` will broadcast a number data packet to other micro:bits connected via radio. ```blocks @@ -47,6 +48,21 @@ radio.onDataReceived(() => { ``` +Notice that moving the micro:bit the farthest direction in the x direction will be -1023 on the charting beneath the simulator. The second observation will be that the LEDs will be full brightness on the 2nd micro:bit. There is a single LED turned on with the 1st micro:bit. Additionally, the graphs will reflect 0 acceleation for the 1st micro:bit. In this scenario, if you are adjusting the acceleration in the simualator, you are also changing your chart that will be produced. + +![](/static/mb/acc.png) + +NOTE: The colors of the charts reflect the color of the micro:bit simulator. In this instance, the micro:bits are blue and green. So the colors of the line graphs reflect the colors of the micro:bit + +After running this simulatation several seconds by moving the micro:bit side to side in the x direction, you are ready to graph or chart the accceleration of the micro:bit. We want a printout of our acceleration on Excel. We will graph the fluctuating acceleration of the simulation experiment. + +![](/static/mb/acc2.png) + +Finally, you must open the Excel CSV file by clicking on the data.xls file that was downloaded to Downloads Folder. + +![](/static/mb/csv.png) + +Have fun reviewing your simulation and analyze the acceleration by chart the Excel data using Excel. * Connect the first micro:bit to your computer using your USB cable and run the charting script on it. * Connect the second micro:bit to your computer using your USB cable and run the charting script on it. diff --git a/docs/lessons/graph-temperature.md b/docs/lessons/graph-temperature.md new file mode 100644 index 00000000..9ab04610 --- /dev/null +++ b/docs/lessons/graph-temperature.md @@ -0,0 +1,36 @@ +# graph temperature lesson + +Create a charting app for simulating and measuring the actual temperature + +## Topic + +Acceleration + +## Quick Links + +* [activity](/lessons/charting/activity) + + +## Prior learning/place of lesson in scheme of work + +Learn the functions of **on data received**, **send number** and **receive number** and chart `plot bar graph` for `acceleration` in the "x" dimension. + +## Documentation + +```cards +basic.showNumber(0) +input.acceleration(Dimension.X) +led.plotBarGraph(0, 1023) +radio.onDataReceived(() => {}) +radio.sendNumber(0) +radio.receiveNumber() +``` + +## Objectives + +* learn how to repeat code in the background forever +* learn how to get the acceleration value (g-force), in one of three specified dimensions +* learn how to display a vertical bar graph based on the value and high value. +* learn how to register code to run when a packet is received over radio +* learn how to broadcast a number data packet to other micro:bits connected via radio +* learn how to read the next radio packet as a number data packet diff --git a/docs/lessons/light-level.md b/docs/lessons/light-level.md new file mode 100644 index 00000000..5ce06933 --- /dev/null +++ b/docs/lessons/light-level.md @@ -0,0 +1,36 @@ +# light level lesson + +Create a charting app for simulating and measuring the amount of light measured by the micro:bit + +## Topic + +Acceleration + +## Quick Links + +* [activity](/lessons/charting/activity) + + +## Prior learning/place of lesson in scheme of work + +Learn the functions of **on data received**, **send number** and **receive number** and chart `plot bar graph` for `acceleration` in the "x" dimension. + +## Documentation + +```cards +basic.showNumber(0) +input.acceleration(Dimension.X) +led.plotBarGraph(0, 1023) +radio.onDataReceived(() => {}) +radio.sendNumber(0) +radio.receiveNumber() +``` + +## Objectives + +* learn how to repeat code in the background forever +* learn how to get the acceleration value (g-force), in one of three specified dimensions +* learn how to display a vertical bar graph based on the value and high value. +* learn how to register code to run when a packet is received over radio +* learn how to broadcast a number data packet to other micro:bits connected via radio +* learn how to read the next radio packet as a number data packet diff --git a/docs/lessons/charting.1.md b/docs/lessons/probability.md similarity index 100% rename from docs/lessons/charting.1.md rename to docs/lessons/probability.md diff --git a/docs/lessons/rotation.md b/docs/lessons/rotation.md new file mode 100644 index 00000000..28162c00 --- /dev/null +++ b/docs/lessons/rotation.md @@ -0,0 +1,36 @@ +# charting lesson + +Measure the acceleration on the micro:bit in the "z" direction. + +## Topic + +Acceleration + +## Quick Links + +* [activity](/lessons/charting/activity) + + +## Prior learning/place of lesson in scheme of work + +Learn the functions of **on data received**, **send number** and **receive number** and chart `plot bar graph` for `acceleration` in the "x" dimension. + +## Documentation + +```cards +basic.showNumber(0) +input.acceleration(Dimension.X) +led.plotBarGraph(0, 1023) +radio.onDataReceived(() => {}) +radio.sendNumber(0) +radio.receiveNumber() +``` + +## Objectives + +* learn how to repeat code in the background forever +* learn how to get the acceleration value (g-force), in one of three specified dimensions +* learn how to display a vertical bar graph based on the value and high value. +* learn how to register code to run when a packet is received over radio +* learn how to broadcast a number data packet to other micro:bits connected via radio +* learn how to read the next radio packet as a number data packet diff --git a/docs/static/mb/acc.png b/docs/static/mb/acc.png new file mode 100644 index 00000000..7e4310e5 Binary files /dev/null and b/docs/static/mb/acc.png differ diff --git a/docs/static/mb/acc2.png b/docs/static/mb/acc2.png new file mode 100644 index 00000000..07c68713 Binary files /dev/null and b/docs/static/mb/acc2.png differ diff --git a/docs/static/mb/csv.png b/docs/static/mb/csv.png new file mode 100644 index 00000000..382d5136 Binary files /dev/null and b/docs/static/mb/csv.png differ