Search found 6 matches

by sangk82
Wed May 22, 2024 6:02 am
Forum: General Discussion
Topic: wifi_prov_mgr example / IDF v5.2 , vscode / build time error
Replies: 1
Views: 931

Re: wifi_prov_mgr example / IDF v5.2 , vscode / build time error

Thank you for helping me guys I just fingured it out lol idk which point makes differences but on IDF v5.2.1 it will disable BLE functions when I choose SoftAP mode. IDF v5.2, you should turn off Component conifg-Bluetooth- Bluetooth check box from sdkconfig. i wish i can post pictures but good luck...
by sangk82
Wed Apr 24, 2024 4:20 am
Forum: General Discussion
Topic: wifi_prov_mgr example / IDF v5.2 , vscode / build time error
Replies: 1
Views: 931

wifi_prov_mgr example / IDF v5.2 , vscode / build time error

Hi I have problem with wifi_prov_mgr example. I have ran wifi_prov_mgr example using IDF v5.2.1 and it works but not IDF v5.2 I tried to run it as BLE mode and it works. I also tried to run it as SOFTAP mode but it failed. problem is only SOFTAP mode. here's terminal log Bootloader binary size 0x685...
by sangk82
Mon Mar 25, 2024 8:39 am
Forum: General Discussion
Topic: about common_test_methods
Replies: 2
Views: 1899

about common_test_methods

Hi. I'm on Windows11, vscode esp-idf. When I tried to run examples like ws_echo_server or https_server_simple, there are python files as pytest_ws_server_example.py, pytest_https_server_simple.py. in that files, import pytest from common_test_methods import get_env_config_variable from pytest_embedd...
by sangk82
Fri Mar 22, 2024 12:17 am
Forum: General Discussion
Topic: About wifi STA - AP mode
Replies: 3
Views: 1141

Re: About wifi STA - AP mode

Thank you for answering :)
by sangk82
Tue Mar 19, 2024 6:27 am
Forum: General Discussion
Topic: About wifi STA - AP mode
Replies: 3
Views: 1141

I Found a Reason

Hi, me again

I think I found a reason.

according to the comments of esp_wifi_set_config(),
the wifi config will be saved on NVS autometically.

that was the reason even tho I skip to put the AP mode config, it remained on NVS.
so it can open the server without setting information.

Thank you
by sangk82
Tue Mar 19, 2024 2:06 am
Forum: General Discussion
Topic: About wifi STA - AP mode
Replies: 3
Views: 1141

About wifi STA - AP mode

hi, I am beginner of ESP. I was trying to use STA-AP mode. I've understood how to use each mode seperately but I wanna know how to use STA-AP mode here's a general code I found on internet. // set APSTA mode ESP_ERROR_CHECK (esp_wifi_set_mode (WIFI_MODE_APSTA)); // configure AP_config and STA_config...