Skip to content

Commit

Permalink
Use right function for BSSID (#2132)
Browse files Browse the repository at this point in the history
  • Loading branch information
Luc authored and me-no-dev committed Dec 1, 2018
1 parent a15b7e9 commit f644d9d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/WiFi/src/WiFiMulti.cpp
Expand Up @@ -123,7 +123,7 @@ uint8_t WiFiMulti::run(uint32_t connectTimeout)
log_i("[WIFI] Connecting done.");
log_d("[WIFI] SSID: %s", WiFi.SSID().c_str());
log_d("[WIFI] IP: %s", WiFi.localIP().toString().c_str());
log_d("[WIFI] MAC: %s", WiFi.BSSID().toString().c_str());
log_d("[WIFI] MAC: %s", WiFi.BSSIDstr().c_str());
log_d("[WIFI] Channel: %d", WiFi.channel());
break;
case 1:
Expand Down

0 comments on commit f644d9d

Please sign in to comment.