Search found 4 matches

by jesse_a_b
Thu Aug 31, 2023 4:46 pm
Forum: Report Bugs
Topic: ESP32 S2 espnow/wifi not working when receiving on uart1
Replies: 0
Views: 33236

ESP32 S2 espnow/wifi not working when receiving on uart1

I uploaded the ESPNow Basic Master arduino sketch to a ESP32 S2 (S2 Mini board on ebay) and it works, but if I connect the rx pin (GPIO18) for a serial signal coming from an arduino, the wireless communication doesn't work. "No WiFi devices in AP Mode found Slave Not Found, trying again." However if...
by jesse_a_b
Fri Apr 28, 2023 3:52 pm
Forum: ESP-IDF
Topic: NVS not initialized error
Replies: 2
Views: 2717

Re: NVS not initialized error

I was able to solve a similar error based on the esp-now example project by adding this in main : // Initialize NVS esp_err_t ret = nvs_flash_init(); if (ret == ESP_ERR_NVS_NO_FREE_PAGES || ret == ESP_ERR_NVS_NEW_VERSION_FOUND) { ESP_ERROR_CHECK( nvs_flash_erase() ); ret = nvs_flash_init(); } ESP_ER...
by jesse_a_b
Fri Apr 28, 2023 2:03 pm
Forum: ESP-IDF
Topic: NVS not initialized error
Replies: 2
Views: 2717

Re: NVS not initialized error

I have the same problem
by jesse_a_b
Thu Apr 27, 2023 12:35 pm
Forum: General Discussion
Topic: What are esp-idf supported LCD/TFT displays?
Replies: 3
Views: 2482

Re: What are esp-idf supported LCD/TFT displays?

There's several libraries on Arduino, TFT_eSPI, MCUFRIEND, GFX, etc.
I haven't found a LCD/TFT display, parallel or serial, that could not work with esp32.