diff --git a/docs/lessons/charting/quiz-answers.md b/docs/lessons/charting/quiz-answers.md new file mode 100644 index 00000000..684f44d3 --- /dev/null +++ b/docs/lessons/charting/quiz-answers.md @@ -0,0 +1,33 @@ +# charting quiz answers + +Measure the acceleration on the micro:bit in the "x" direction. + + +## Name + +## Directions + +Use this activity document to guide your work in the [glowing pendulum activity](/lessons/charting/acceleration) + +Answer the questions while completing the tutorial. Pay attention to the dialogues! + +## 1. Why are you creating a 'forever' loop? + +
+ +We are creating a forever loop to constantly display the appropriate brightness on the LED display. + +## 2. Write the line of code to measure the acceleration with respect to the "x" axis and display this value in a bar graph. + +
+ +```blocks +led.plotBarGraph(input.acceleration(Dimension.X), 0) +``` + +## 3. After vigarously moving the micro:bit from side to side along the "x" axis for a sufficient amount of time,insert the Excel graph for displaying a line chart used to display trends over time. + +
+ +![](/static/mb/line_chart.png) + diff --git a/docs/lessons/charting/quiz..md b/docs/lessons/charting/quiz..md new file mode 100644 index 00000000..e9afb4dc --- /dev/null +++ b/docs/lessons/charting/quiz..md @@ -0,0 +1,23 @@ +# charting quiz + +Measure the acceleration on the micro:bit in the "x" direction. + +## Name + +## Directions + +Use this activity document to guide your work in the [glowing pendulum tutorial](/lessons/glowing-pendulum/activity) + +Answer the questions while completing the tutorial. Pay attention to the dialogues! + +## 1. Why are you creating a 'forever' loop? + +
+ +## 2. Write the line of code to measure the acceleration with respect to the "y" axis and store this value in a local variable called 'acceleration'. + +
+ +## 3. After vigarously moving the micro:bit from side to side along the "x" axis for a sufficient amount of time,insert the Excel graph for displaying a line chart used to display trends over time. + + diff --git a/docs/static/mb/line_chart.JPG b/docs/static/mb/line_chart.JPG new file mode 100644 index 00000000..1d056ac1 Binary files /dev/null and b/docs/static/mb/line_chart.JPG differ