diff --git a/content/hardware/02.hero/boards/yun-rev2/tutorials/http-client/content.md b/content/hardware/02.hero/boards/yun-rev2/tutorials/http-client/content.md index 89fb160cc7..5e91507141 100644 --- a/content/hardware/02.hero/boards/yun-rev2/tutorials/http-client/content.md +++ b/content/hardware/02.hero/boards/yun-rev2/tutorials/http-client/content.md @@ -56,7 +56,7 @@ void loop() { HttpClient client; - client.get("http://www.arduino.cc/asciilogo.txt"); + client.get("http://arduino.tips/asciilogo.txt"); ``` As long as there are bytes from the server in the client buffer, read the bytes and print them to the serial monitor. Repeat every 5 seconds. @@ -79,5 +79,3 @@ while (client.available()) { The complete sketch is below : - -**Last revision 2016/05/25 by SM**