From 5bcf481c1192f84961d45e54a4c3267d2f0842df Mon Sep 17 00:00:00 2001 From: Josefine Hansson <66409231+jhansson-ard@users.noreply.github.com> Date: Fri, 15 Mar 2024 11:25:43 +0100 Subject: [PATCH] Updated code link [EDC-1328] --- .../02.hero/boards/yun-rev2/tutorials/http-client/content.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) 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**