Search found 5 matches
- Sun Mar 10, 2024 8:38 am
- Forum: ESP32 Arduino
- Topic: SD.Open() causes crashing with esp32
- Replies: 9
- Views: 3202
Re: SD.Open() causes crashing with esp32
I have did a number of project using the Arduino Sd and greiman/SdFat That supports >32GB sd cards and test on all ESP ( exspet the new ones H2/C6 ) You can have a look at the total projects ( Wifi manager, OTA updates, NTP time , and SD card , FTP Server) https://github.com/EmileSpecialProducts/por...
- Sun Feb 25, 2024 6:57 am
- Forum: General Discussion
- Topic: ESP32-C6 SDCARD SPI
- Replies: 1
- Views: 553
Re: ESP32-C6 SDCARD SPI
I have the ESP32-C6 SDcard example working,
And I have updated the Project,
The FatEx is not working as the SdFat library is not yet( 2024-02) working under 3.0.0A version of the Arduino platform.
And I have updated the Project,
The FatEx is not working as the SdFat library is not yet( 2024-02) working under 3.0.0A version of the Arduino platform.
- Wed Feb 21, 2024 4:52 pm
- Forum: General Discussion
- Topic: ESP32-C6 SDCARD SPI
- Replies: 1
- Views: 553
ESP32-C6 SDCARD SPI
Has anybody got the SD-card working on the ESP32-C6. I have it working for the esp-arduino 8266/ESP32/ESP32S2/ESP32S3/ESP32C3 Both for Fat and FatEx. But can not get it working on ESP32-C6. I have added the pull up and reduced the frequency SD_PIN_SCK 21 SD_PIN_MOSI 19 SD_PIN_MISO 20 SD_PIN_CS 18 ht...
- Thu Mar 02, 2023 6:43 am
- Forum: ESP32 Arduino
- Topic: ESP32-S2 reboots when WiFi is used
- Replies: 22
- Views: 22791
Re: ESP32-S2 reboots when WiFi is used
I have the same problem, 1 of 3 is working correctly and 2 works but when I use the wifi then they will sometimes reboot or just stop. I remove the EN pin and shortened the track ( so that it will not pick up noise from the RF antenna ),Did not help, I even connected the EN to 3v3 also did not help....
- Wed Jan 04, 2023 10:20 am
- Forum: ESP32 Arduino
- Topic: Favicon
- Replies: 10
- Views: 10137
Re: Favicon
I have used a powershell script to convert the Favicon.ico ( but also HTML files ) So that i do not need to escape all type of // \\ '' and so on. #include "IR.htm.h" // This is the file IR.htm converted in Array IR_htm void handleRoot() { server.send_P(200, "text/html", IR_htm, sizeof(IR_htm) ); } ...