8000 Expand access to SDK's struct bss_info by mhightower83 · Pull Request #8683 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Expand access to SDK's struct bss_info #8683

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Oct 10, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
style
  • Loading branch information
mhightower83 committed Oct 8, 2022
commit c54765e9ed0a635fdb34409d4d9b50d2647d0b68
2 changes: 1 addition & 1 deletion libraries/ESP8266WiFi/examples/WiFiScan/WiFiScan.ino
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void loop() {
String ssid;
int32_t rssi;
uint8_t encryptionType;
uint8_t* bssid;
uint8_t *bssid;
int32_t channel;
bool hidden;
int scanResult;
Expand Down
0