aboutsummaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
Diffstat (limited to 'drivers')
-rw-r--r--drivers/sdcard/sdcard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/sdcard/sdcard.py b/drivers/sdcard/sdcard.py
index 815631cae..719eb982e 100644
--- a/drivers/sdcard/sdcard.py
+++ b/drivers/sdcard/sdcard.py
@@ -14,7 +14,7 @@ Example usage on pyboard:
Example usage on ESP8266:
import machine, sdcard, os
- sd = sdcard.SDCard(machine.SPI(0), machine.Pin(15))
+ sd = sdcard.SDCard(machine.SPI(1), machine.Pin(15))
os.umount()
os.VfsFat(sd, "")
os.listdir()