Hi Renzo,
Thanks for the feedback 🙂
Filezilla is well configured: upload to SD CARD works perfectly. It’s the same using WinFTP.
With the same settings, FTP works with another project that uses flash memory storage.
The only changes to Arduino_esp32_SD.ino are :
#include <WiFi.h>
becomes
#include <ESP8266WiFi.h>
and
SPI.begin(14, 12, 15, 13); //SCK, MISO, MOSI,SS
if (SD.begin(13, SPI)) {
becomes
#define CS_PIN D8
[...]
if (SD.begin(CS_PIN )) {