第 9 步:现在我们的间隔事件已经设置好,让我们准备好收集列表中的数据!

请记住,应该在事件期间发生的代码需要缩进四个空格。

  • 在间隔事件中找到这条线: temp · = · microbitget_temp()
  • =符号左侧的变量从temp更改为data 。我们希望变量名是通用的。
  • 点击运行。然后点击提交接下来继续。

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 = [] my_display = codesters.ScatterPlot(time_list, data_list) time = 0 def interval(): temp = microbit.get_temp() stage.event_interval(interval, 2)
  • Run Code
  • 提交作品
  • 下个活动
  • Show Console
  • Reset Code Editor
  • Codesters How To (opens in a new tab)