-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Available GPIO pins that can be used while using the camera #4
Comments
On our board, if the pin has a horizontal wire, it means that it is the pin of the camera, please avoid using it. I recommend using HSPI pins to read and write SD cards. #include <Arduino.h> #define HSPI_MISO 12 //External circuits cannot have pull-up resistors SPIClass hspi(HSPI); void setup(){ uint8_t cardType = SD.cardType(); Serial.print("SD Card Type: "); uint64_t cardSize = SD.cardSize() / (1024 * 1024); Serial.printf("Total space: %lluMB\r\n", SD.totalBytes() / (1024 * 1024)); void loop() { } I used a 16GB SD card,and esp32 print the contents by serial port: |
I tried to use this with a known good SD card reader board. |
Hi. I want to add an external SD card reader to my project and need to know which GPIO pins I can use for this.
In the pinout image there doesn't seem to be more than two unused GPIO pins.
This doesn't seem correct.
Would you please help me to know which pins I should use?
The text was updated successfully, but these errors were encountered: