We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5423f37 commit b03ca23Copy full SHA for b03ca23
examples/cv2_hardware_init/sd_card.py
@@ -39,11 +39,11 @@
39
vfs = uos.VfsFat(sd_card)
40
uos.mount(vfs, "/sd")
41
except ImportError:
42
- print("sdcard module not found, skipping SD card initialization...")
+ print("`sdcard` module not found, skipping SD card initialization...")
43
except OSError as e:
44
eStr = str(e)
45
if "no SD card" in eStr:
46
- print("no SD card found, skipping SD card initialization...")
+ print("No SD card found, skipping SD card initialization...")
47
elif "Errno 1" in eStr:
48
print("SD card already mounted, skipping SD card initialization...")
49
else:
0 commit comments