这是我在 python 中的 microbit 代码
所以我想知道如何将 target_x 和 target_y 从 microbit 1 发送到第二个 microbit?
微比特 1:
radio.on()
target_x = random.randint(0,4)
target_y = random.randint(0,4)
if button_a.was.pressed():
radio.send()
微比特 2:
radio.on()
order = radio.receive()
microbit.display.set_pixel(target_x,target_y,7)
所以我想知道如何将 target_x 和 target_y 从 microbit 1 发送到第二个 microbit?
谢谢你的回答