Not sure if you found a source.
I have been able to find one supplier: https://www.solder.party/docs/flexypin/
If you find any more, please post here.
Search found 5 matches
- Sat Mar 12, 2022 5:55 pm
- Forum: Hardware
- Topic: esp-wroom-32 socket
- Replies: 5
- Views: 9245
- Tue Mar 01, 2022 8:07 am
- Forum: ESP-IDF
- Topic: SD card write speed
- Replies: 9
- Views: 32532
Re: SD card write speed
Thanks for that link, it lead me down a few paths to test.
Arduino version 1.0.6 library works correctly
Arduino version 2.0.0 library works but is slow
Arduino version 2.0.2 library fails badly as we know
https://github.com/espressif/arduino-esp32/issues/6081
leads to
https://github.com ...
Arduino version 1.0.6 library works correctly
Arduino version 2.0.0 library works but is slow
Arduino version 2.0.2 library fails badly as we know
https://github.com/espressif/arduino-esp32/issues/6081
leads to
https://github.com ...
- Mon Feb 28, 2022 5:19 am
- Forum: ESP-IDF
- Topic: SD card write speed
- Replies: 9
- Views: 32532
Re: SD card write speed
Check https://github.com/espressif/esp-idf/tr ... esp32-only.
For reference : https://github.com/espressif/arduino-esp32/issues/6164
Hope this helps
For reference : https://github.com/espressif/arduino-esp32/issues/6164
Hope this helps
- Sun Feb 27, 2022 6:49 pm
- Forum: ESP-IDF
- Topic: SD card write speed
- Replies: 9
- Views: 32532
Re: SD card write speed
I have also been having issues with SD speed and have been troubleshooting.
I found a benchmarking sketch that helped me. (https://www.instructables.com/Select-SD-Interface-for-ESP32/)
I modified it heavily to test with an ESP-Cam board. (MISO:2 MOSI:15 SCK:14 CS:13) and runs in 1bit/4bit/SPI ...
I found a benchmarking sketch that helped me. (https://www.instructables.com/Select-SD-Interface-for-ESP32/)
I modified it heavily to test with an ESP-Cam board. (MISO:2 MOSI:15 SCK:14 CS:13) and runs in 1bit/4bit/SPI ...
- Mon Dec 20, 2021 11:16 am
- Forum: General Discussion
- Topic: 1.0.5-rc2 ESPNOW: Peer channel is not equal to the home channel, send fail!
- Replies: 6
- Views: 22616
Re: 1.0.5-rc2 ESPNOW: Peer channel is not equal to the home channel, send fail!
I have just found this post as I was looking for the same details.
If you have not yet found the answer the below is working for me for setting channels with ESP-Now only use.
WiFi.mode( WIFI_STA );
WiFi.disconnect();
int chan=11;
ESP_ERROR_CHECK(esp_wifi_set_channel(chan,WIFI_SECOND_CHAN_NONE ...
If you have not yet found the answer the below is working for me for setting channels with ESP-Now only use.
WiFi.mode( WIFI_STA );
WiFi.disconnect();
int chan=11;
ESP_ERROR_CHECK(esp_wifi_set_channel(chan,WIFI_SECOND_CHAN_NONE ...