STEP 6: Time to set up our graph and add our lists to it as the sources of data.

  • In SUBJECT, go to and drag Scatter Plot to the bottom of your program.
  • Change the name of the first parameter in the scatter plot command from x_data to time_list.
  • Change the name of the second parameter in the scatter plot command from y_data to data_list.
  • Click Run to see an empty scatter plot appear. Then click Submit and Next to move on.

To navigate the page using the TAB key, first press ESC to exit the code editor.

microbit = codesters.Microbit() microbit.show_string("hello") data = microbit.get_temp() microbit.show_number(data) data_list = [] time_list = []
  • Run Code
  • Submit Work
  • Next Activity
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)