An open API service indexing awesome lists of open source software.

https://github.com/jmysu/esp32-spi

Some SPI related...
https://github.com/jmysu/esp32-spi

arduino esp32 platformio sdfat spi

Last synced: 2 months ago
JSON representation

Some SPI related...

Awesome Lists containing this project

README

          

# ESP32-SPI [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)

Some SPI related notes...

### Wires to connect SPI SD/TF card

Use ESP32's VSPI , works on Arduino SdFat library

   


 






Widora-Air SdFat notes:
- Change SPI pins in SdSpiDriver.h: _SPI.begin(18,19,23); //Change to VSPI_

- Select the correct SPI SS pin: _SD_CHIP_SELECT = 5;_

- Change SPI Speed from 50MHz to 25MHz: _if (!sd.cardBegin(SD_CHIP_SELECT, SD_SCK_MHZ(25))) { //works under 25MHz_




### References
- [Arduino SdFat V2](https://github.com/greiman/SdFat) Arduino library SdFat.