您可以在 microPython 中导入 python 个库吗?

Can you import python libaries into microPython?

我已经启动了一个项目并测试它是否有效,我使用了 Pi 零。它有按钮,然后根据按下的按钮将 MIDI 消息发送到我的电脑。一个简单的 MIDI 控制器。

现在我认为像Pico这样的微控制器更适合这样的任务,但它只能运行 MicroPython。

所以我的问题是,您是否可以将大部分或全部 python 库导入 microPython,或者我是否应该使用另一个可以 运行 python.

通常是“不”。装不下。

So my question is, wether you can import most or all of the python libaries into microPython or if I should use another MicroController that can run python.

虽然 MicroPython 共享 Python (3.4) 的大部分语法,但它的不同之处在于,除了最琐碎的 Python 代码之外,其他任何东西都不会 运行在微Python下。一般来说,您应该只期望 运行 代码在支持 MicroPython 的设备上明确为 MicroPython 开发。

So my question is, wether you can import most or all of the python libaries into microPython or if I should use another MicroController that can run python.

我认为没有任何可用的微控制器可以 运行 标准 Python。您要找到的最小设备可能类似于 Raspberry Pi 零。