ESP32-S3 SDCard OSError: 16 #17411
-
English(machine translation):
Pins:
Checked: I ran the following code in Thonny: from machine import Pin, SDCard
import os
sd = SDCard(slot=2, sck=Pin(14), mosi=Pin(13), miso=Pin(12), cs=Pin(1), freq=10000000)
vfs=os.VfsFat(sd)
os.mount(vfs, "/sd") But Thonny output this error:
Any idea on how to solve this? 中文:
引脚:
已查询: 我在Thonny中运行了如下代码: from machine import Pin, SDCard
import os
sd = SDCard(slot=2, sck=Pin(14), mosi=Pin(13), miso=Pin(12), cs=Pin(1), freq=10000000)
vfs=os.VfsFat(sd)
os.mount(vfs, "/sd") 但是Thonny输出了这个报错:
请问我该如何解决这个问题? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
我尝试了这个(slot3): |
Beta Was this translation helpful? Give feedback.
-
ESP32-S3没有5v输出引脚,只有5v输入(Vin),所以导致SDCard无法正常工作 |
Beta Was this translation helpful? Give feedback.
ESP32-S3没有5v输出引脚,只有5v输入(Vin),所以导致SDCard无法正常工作