Search found 16 matches

by KaranRaj
Tue Mar 12, 2019 11:26 am
Forum: ESP-MDF
Topic: Using Wi-Fi with ESP-MDF
Replies: 4
Views: 10789

Using Wi-Fi with ESP-MDF

Hi All, I recently started working with the ESP-MDF framework. I want to use the Wi-Fi with mesh. I went through the ESP-mesh documents https://docs.espressif.com/projects/esp ... _mesh.html which says: "When self organized networking is enabled, the ESP-MESH stack will internally make calls to Wi-F...
by KaranRaj
Thu Mar 07, 2019 7:57 am
Forum: ESP-MDF
Topic: Integrate mesh into an already existing ESP-IDF framework code
Replies: 1
Views: 4232

Integrate mesh into an already existing ESP-IDF framework code

Hi! So, I already have a finished code developed in ESP-IDF framework, to which I want to add the mesh functionality. Now I understand mesh works with the ESP-MDF framework. I added the ESP-MDF "get-started" example code into my existing code as a library file, and tried to build the code, only fail...
by KaranRaj
Tue Feb 19, 2019 7:13 am
Forum: General Discussion
Topic: restoring gpio to normal after waking up from deep sleep
Replies: 2
Views: 4488

restoring gpio to normal after waking up from deep sleep

Hi! So in order to save power during deep-sleep, I've added the rtc_gpio_isolate(PIN_A) API like this: rtc_gpio_isolate(PIN_A); esp_sleep_enable_ext0_wakeup(BUTTON_GPIO, 1); esp_sleep_enable_timer_wakeup(wakeup_time_sec * 1000000); esp_deep_sleep_start(); However, PIN_A does not respond after wake u...
by KaranRaj
Tue Feb 19, 2019 6:53 am
Forum: General Discussion
Topic: Store an integer array to NVS
Replies: 3
Views: 6458

Re: Store an integer array to NVS

Sorry about the caps, and thanks for the reply. I was able to save the array into the NVS using blob.
by KaranRaj
Wed Feb 13, 2019 1:43 pm
Forum: General Discussion
Topic: Store an integer array to NVS
Replies: 3
Views: 6458

Store an integer array to NVS

Hi All!
Can anyone help me out on how to store an integer array (in my case, consisting of 144 elements) to the Non-Volatile Storage? I need to get the array after my ESP wakes up from deep-sleep, just so you understand why I need to do that.
Thanks!