Search found 3 matches

by wasdwasd0105
Wed Feb 07, 2018 2:34 pm
Forum: ESP32 boards
Topic: Is there anyone mount Sdcard successfully on ESP32 ??
Replies: 14
Views: 21813

Is there anyone mount Sdcard successfully on ESP32 ??

I have tried few days on mounting the sdcard using the official driver https://github.com/micropython/micropython/blob/master/drivers/sdcard/sdcard.py (One this document,it does not show the information for ESP32) It keeps on failing showing message "OSError: no SD card". I have tried different spi ...
by wasdwasd0105
Wed Feb 07, 2018 2:18 pm
Forum: ESP32 boards
Topic: SD card problem on ESP-32
Replies: 17
Views: 26095

Re: SD card problem on ESP-32

[quote=OutoftheBOTS_ post_id=25294 time=1517995347 user_id=3423] I have been using SD card on ESP32 fine with laboris port of micripython. I have used it in both 4line and 1 line modes see his docs at https://github.com/loboris/MicroPython_ESP32_psRAM_LoBo/wiki/filesystems [/quote] It is an unoffici...
by wasdwasd0105
Tue Feb 06, 2018 7:41 pm
Forum: ESP32 boards
Topic: SD card problem on ESP-32
Replies: 17
Views: 26095

Re: SD card problem on ESP-32

hello, I am facing the same problem "OSError: no SD card", but i found you provide wrong gpio number.
Spi (1) refers to "HSPI" , using
SPI_MISO = HSPIQ(GPIO12)
SPI_MOSI = HSPID(GPIO13)
SPI_CLK = HSPICLK(GPIO14)
SPI_CS = HSPICS0(GPIO15)
I hope you can solve the problem, if solved, plz let me know, thx