Search found 65 matches
- Wed May 17, 2017 11:23 am
- Forum: General Discussion
- Topic: SPP profile in bluedroid missing?
- Replies: 25
- Views: 17045
Re: SPP profile in bluedroid missing?
Now there is a BT stack with SPP available: https://github.com/bluekitchen/btstack/ ... port/esp32. It seems to be free for private use only. Did anybody test it?
- Sat Mar 04, 2017 6:17 pm
- Forum: ESP-IDF
- Topic: WIFI_MODE_APSTA Sample
- Replies: 20
- Views: 31921
Re: WIFI_MODE_APSTA Sample
I found a solution how to find the IP: wifi_sta_list_t stations; ESP_ERROR_CHECK(esp_wifi_ap_get_sta_list(&stations)); tcpip_adapter_sta_list_t infoList; ESP_ERROR_CHECK(tcpip_adapter_get_sta_list(&stations, &infoList)); int i = 0; while(i < infoList.num) { printf("mac: %.2x:%.2x:%.2x:%.2x:%.2x:%.2x...
- Sat Mar 04, 2017 8:52 am
- Forum: ESP-IDF
- Topic: WIFI_MODE_APSTA Sample
- Replies: 20
- Views: 31921
Re: WIFI_MODE_APSTA Sample
o.k. thank you. Now it's clear and it works. Thanks a lot. Now I am trying to obtain infos (e.g. ssid(s) or IPs) of the stations connected to my AP. I found an example on that using "esp_wifi_get_station_list". But this does not seem to work because this function does not seem to be available in ESP...
- Thu Mar 02, 2017 3:28 pm
- Forum: ESP-IDF
- Topic: WIFI_MODE_APSTA Sample
- Replies: 20
- Views: 31921
Re: WIFI_MODE_APSTA Sample
Thank You for Your fast answer. But unfortunately the most importent thing for me is missing:
How do You populate the union "wifi_config_t"?
How do You populate the union "wifi_config_t"?
- Wed Mar 01, 2017 6:57 pm
- Forum: ESP-IDF
- Topic: WIFI_MODE_APSTA Sample
- Replies: 20
- Views: 31921
Re: WIFI_MODE_APSTA Sample
@imtiaz:
nice that You found a solution for this problem!
Would You be so nice to share it so that also other people are delighted?
kind regards
Squonk
nice that You found a solution for this problem!
Would You be so nice to share it so that also other people are delighted?
kind regards
Squonk