September 2016
Intermediate to advanced
188 pages
3h 48m
English
To illustrate how the WiFi101 library is working on the MKR1000 board, we are now going to use it to grab the content of a web page, and display the result inside the Serial monitor.
You do not need any extra steps here, simply make sure that you have the WiFi101 library installed.
Let's now see the sketch for this recipe. As it is really similar to the sketch of the previous recipe, I will only highlight the main pieces of code that were added here:
www.example.com page:char server[] = "www.example.com";
WiFiClient client;
Read now
Unlock full access