Raspberry Pi Pico - Thonny 解释器的问题

Raspberry Pi Pico - problem with Thonny interpreter

我在编程方面遇到了麻烦 Raspberry Pi Pico。我正在使用 Thonny IDE 和 micropython。我只是一个初学者,所以只需从他们的网站 (https://projects.raspberrypi.org/en/projects/getting-started-with-the-pico/6) 下载代码并将其安装到微控制器即可。但是当我保存这段代码时:

from machine import Pin
import time
led = Pin(15, Pin.OUT)
button = Pin(14, Pin.IN, Pin.PULL_DOWN)
while True:
if button.value():
    led.toggle()
    time.sleep(0.5)

我收到这条消息:

回溯(最后一次调用): 文件“”,第10行 IndentationError:unindent 不匹配任何外部缩进级别 你能帮帮我吗?

也许试试这个:

from machine import Pin
import time
led = Pin(15, Pin.OUT)
button = Pin(14, Pin.IN, Pin.PULL_DOWN)
while True:
    if button.value():
        led.toggle()
        time.sleep(0.5)

我刚刚更改了 if button.value(): 在 while true: 循环中多了四个空格。

您需要正确缩进代码:

from machine import Pin
import time
led = Pin(15, Pin.OUT)
button = Pin(14, Pin.IN, Pin.PULL_DOWN)
while True:
    if button.value():
        led.toggle()
        time.sleep(0.5)