You can get rssi that manner:
wifi_ap_record_t wifidata;
if (esp_wifi_sta_get_ap_info(&wifidata)==0){
printf("rssi:%d\r\n", wifidata.rssi);
}
Search found 2 matches
- Sun Jan 01, 2017 10:52 pm
- Forum: General Discussion
- Topic: Getting the RSSI
- Replies: 4
- Views: 22470
- Sun Jan 01, 2017 9:06 pm
- Forum: Report Bugs
- Topic: enum wifi_bandwidth_t not complete
- Replies: 3
- Views: 8658
Re: enum wifi_bandwidth_t not complete
This feature is not working to me. to: printf("Band :%X\r\n",esp_wifi_set_bandwidth(ESP_IF_WIFI_STA, WIFI_BW_HT20)); printf("Band :%X\r\n",esp_wifi_set_bandwidth(ESP_IF_WIFI_AP , WIFI_BW_HT20)); or to: printf("Band :%X\r\n",esp_wifi_set_bandwidth(WIFI_IF_STA, WIFI_BW_HT20)); printf("Band :%X\r\n",es...