We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7efe3ce commit 62a8c89Copy full SHA for 62a8c89
libraries/WiFi/examples/WiFiIPv6/WiFiIPv6.ino
@@ -83,8 +83,10 @@ void WiFiEvent(WiFiEvent_t event){
83
WiFi.enableIpV6();
84
break;
85
case ARDUINO_EVENT_WIFI_STA_GOT_IP6:
86
- Serial.print("STA IPv6: ");
+ Serial.print("STA Local IPv6: ");
87
Serial.println(WiFi.localIPv6());
88
+ Serial.print("STA Global IPv6: ");
89
+ Serial.println(WiFi.globalIPv6());
90
91
case ARDUINO_EVENT_WIFI_AP_GOT_IP6:
92
Serial.print("AP IPv6: ");
0 commit comments