0

我正在尝试为 microbit 中的无线电功能添加一个变量“ch”,但我总是在编译时收到一条错误消息。

这个想法是将任何参数发送到 ch 以合并到无线电配置函数中。

from microbit import *
import radio
radio.on()
#-----------
# This channel can vary due to an external input
ch = 30
radio.config(channel=ch) # the original syntaxes is: radio.config(channel=7)

#-------------------

感谢有人可以提供帮助。

4

1 回答 1

1

您的错误不是来自radio.config(channel=ch)display.scroll("channel" % ch)应该阅读的行display.scroll("channel %d" % ch)

于 2018-08-19T20:12:26.973 回答