8000 add 1 more IPAddress constructor by d-a-v · Pull Request #5551 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

add 1 more IPAddress constructor #5551

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
Dec 26, 2018
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
fix IPv6 example with lwip-v1.4
  • Loading branch information
d-a-v committed Dec 25, 2018
commit 990352f633f9088539465aaa524cacfb137397d0
6 changes: 5 additions & 1 deletion libraries/ESP8266WiFi/examples/IPv6/IPv6.ino
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,11 @@ void setup() {
Serial.println();
Serial.println(ESP.getFullVersion());

Serial.printf("IPV6 is%s enabled\n", LWIP_IPV6 ? emptyString.c_str() : " NOT");
#if LWIP_IPV6
Serial.printf("IPV6 is enabled\n");
#else
Serial.printf("IPV6 is not enabled\n");
#endif

WiFi.mode(WIFI_STA);
WiFi.begin(STASSID, STAPSK);
Expand Down
0