Updated esp322432s028r.h with SD card interface pin defines

Added pin defines for the ESP32 2432S028R and ESP 2432S028_2USB boars.
Tested successfully with both above mentioned boards.
This commit is contained in:
p43lz3r 2024-02-02 16:37:40 +01:00 committed by GitHub
parent 009c7941a3
commit 6e01e30b6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,4 +7,16 @@
#define LED_PIN 4 // Red pin
#define LED_PIN_G 17 // Green pin
// Pin defines for the SD card interface
// This is working
// --------------------------------------
// use SPI interface
// (default SPI unit provided by <SPI.h>)
// setup SPI pins.
#define SDSPI_CS 5
#define SDSPI_CLK 18
#define SDSPI_MOSI 23
#define SDSPI_MISO 19
#endif