Skip to content
This repository has been archived by the owner on Aug 5, 2022. It is now read-only.

Make WebClient examples consistent #34

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
3 changes: 2 additions & 1 deletion libraries/Ethernet/examples/WebClient/WebClient.ino
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@
byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED };

// This address may change; use "ping www.google.com" to check.
IPAddress server(172,217,3,238); // Google
// IPAddress server(172,217,3,238); // Google (No DNS)
char server[] = "www.google.com"; // Google (Using DNS)

// Initialize the Ethernet client library
// with the IP address and port of the server
Expand Down