pycharm 正在设置Raspberry Pi皮科(没有名为“Machine”的模块)

kwvwclae  于 2022-11-08  发布在  PyCharm
关注(0)|答案(1)|浏览(277)

我第一次尝试设置一个raspberry pi皮科。我已经安装了micropython,并在Pycharm中设置了我的环境。我写了一个简单的程序来测试我的设置,我得到了这个错误:

Traceback (most recent call last):
File "D:\...\Blink.py", line 1, in <module>
    from machine import Pin
ModuleNotFoundError: No module named 'machine'

下面是代码:

from machine import Pin
import time

led = Pin(25, Pin.OUT)
while True:
    led(1)
    time.sleep(1)
    led(0)
    time.sleep(1)

我还发现了其他一些问题,人们在使用ESP32时也会遇到类似的问题,但我想知道如何在pycharm中使用pi皮科来处理这些问题

r7knjye2

r7knjye21#

你确定在皮科中运行代码而不是在你的计算机中吗?使用Thonny IDE因为你可以很容易地在pico link to download thonny ide中运行和保存代码,然后使用this link来了解如何设置这个ide以在pico中运行代码

相关问题