Search found 32 matches
- Tue Sep 07, 2021 6:03 pm
- Forum: ESP-IDF
- Topic: Searching for kind of wifimanager library
- Replies: 4
- Views: 3812
Re: Searching for kind of wifimanager library
Did it by myself. Used wifi-AP and http server examples
- Mon Sep 06, 2021 11:42 am
- Forum: ESP-IDF
- Topic: wdt reset at startup
- Replies: 5
- Views: 3171
Re: wdt reset at startup
i have this:
It says MAC address was invalid. I was flashing .bin from 0 to 0x400000
It says MAC address was invalid. I was flashing .bin from 0 to 0x400000
- Mon Sep 06, 2021 8:08 am
- Forum: ESP-IDF
- Topic: wdt reset at startup
- Replies: 5
- Views: 3171
Re: wdt reset at startup
No, I dont have more information in logging. When It happens, the esp restarts and runs in low level logging It works when; -I connect logging and comment out section from esp_wifi_start() to esp_wifi_stop() -I disconnect logging. The program works fine for days and nothing wrong happens, it connect...
- Sat Sep 04, 2021 11:24 am
- Forum: ESP-IDF
- Topic: wdt reset at startup
- Replies: 5
- Views: 3171
wdt reset at startup
Hi
Please help me to seek where the problem is. It mostly happens when the logging is ON.
When I disconnect the uart the code works for months!
It happens when esp connects to wifi
Please help me to seek where the problem is. It mostly happens when the logging is ON.
When I disconnect the uart the code works for months!
It happens when esp connects to wifi
- Mon Aug 16, 2021 1:20 pm
- Forum: ESP-IDF
- Topic: Searching for kind of wifimanager library
- Replies: 4
- Views: 3812
Re: Searching for kind of wifimanager library
had seen this. It does not meet my requirements
- Mon Aug 16, 2021 10:48 am
- Forum: ESP-IDF
- Topic: Searching for kind of wifimanager library
- Replies: 4
- Views: 3812
Searching for kind of wifimanager library
Hi What I want: I'm not holding any button at startup - esp32 runs my code I'm holding button at startup - esp32 does not run my code. It is access point. I connect to it and type 192.168.4.1 in browser. I see simple page where i can write ssid password and 2 more variables stored in nvs Please post...
- Sat Aug 14, 2021 4:19 pm
- Forum: ESP-IDF
- Topic: how to proper shut down wifi then turn on and reconnect to wifi
- Replies: 1
- Views: 2085
Re: how to proper shut down wifi then turn on and reconnect to wifi
solution: 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_ERROR_CHECK(ret); s_wifi_event_group = xEventGroupCreate(); ESP_ERROR_CHECK(esp_netif_init()); ESP_ERROR_CHECK(e...
- Sat Aug 14, 2021 12:19 pm
- Forum: ESP-IDF
- Topic: how to proper shut down wifi then turn on and reconnect to wifi
- Replies: 1
- Views: 2085
how to proper shut down wifi then turn on and reconnect to wifi
Hello What i want: Connect to wifi esp_wifi_stop() Reconnect to wifi esp_wifi_stop() For now I only connect to wifi once 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_E...
- Thu Aug 12, 2021 12:42 pm
- Forum: ESP-IDF
- Topic: sntp & ds3231 increase accuracy
- Replies: 1
- Views: 1741
Re: sntp & ds3231 increase accuracy
solution: struct tm timeinfo = { 0 }; int retry = 0; const int retry_count = 10; while (sntp_get_sync_status() == SNTP_SYNC_STATUS_RESET && ++retry < retry_count) { ESP_LOGI(TAG, "Waiting for system time to be set... (%d/%d)", retry, retry_count); vTaskDelay(2000 / portTICK_PERIOD_MS); } sntp_stop()...
- Wed Aug 11, 2021 5:30 pm
- Forum: ESP-IDF
- Topic: sntp & ds3231 increase accuracy
- Replies: 1
- Views: 1741
sntp & ds3231 increase accuracy
Hello if(bits & WIFI_CONNECTED_BIT){ sntp_setoperatingmode(SNTP_OPMODE_POLL); sntp_setservername(0, "pool.ntp.org"); sntp_set_sync_mode(SNTP_SYNC_MODE_IMMED); sntp_init(); time_t now = 0; struct tm timeinfo = { 0 }; int retry = 0; const int retry_count = 10; while (sntp_get_sync_status() == SNTP_SYN...