Skip to content

Commit 202eb92

Browse files
committed
Modified Example schetchs comments
Modified the sketchs documentation , it was alligned with board module name.
1 parent 12259e3 commit 202eb92

File tree

6 files changed

+15
-12
lines changed

6 files changed

+15
-12
lines changed

examples/ScanNetworks/ScanNetworks.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
3-
This example prints the Wifi shield's MAC address, and
4-
scans for available Wifi networks using the Wifi module.
3+
This example prints the board's MAC address, and
4+
scans for available Wifi networks using the NINA module.
55
Every ten seconds, it scans again. It doesn't actually
66
connect to any network, so no encryption scheme is specified.
77
88
Circuit:
9-
* WiFi shield attached
9+
* Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
1010
1111
created 13 July 2010
1212
by dlf (Metodo2 srl)

examples/ScanNetworksAdvanced/ScanNetworksAdvanced.ino

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
/*
22
3-
This example prints the WiFi 101 shield or MKR1000 MAC address, and
4-
scans for available WiFi networks using the WiFi 101 shield or MKR1000 board.
3+
This example prints the board's MAC address, and
4+
scans for available WiFi networks using the NINA module.
55
Every ten seconds, it scans again. It doesn't actually
66
connect to any network, so no encryption scheme is specified.
77
BSSID and WiFi channel are printed
88
9+
Circuit:
10+
* Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
11+
912
This example is based on ScanNetworks
1013
1114
created 1 Mar 2017

examples/SimpleWebServerWiFi/SimpleWebServerWiFi.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
WEP or WPA, change the Wifi.begin() call accordingly.
1515
1616
Circuit:
17-
* WiFi shield attached
17+
* Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
1818
* LED attached to pin 9
1919
2020
created 25 Nov 2012
@@ -119,7 +119,7 @@ void printWifiStatus() {
119119
Serial.print("SSID: ");
120120
Serial.println(WiFi.SSID());
121121

122-
// print your WiFi shield's IP address:
122+
// print your board's IP address:
123123
IPAddress ip = WiFi.localIP();
124124
Serial.print("IP Address: ");
125125
Serial.println(ip);

examples/WiFiChatServer/WiFiChatServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
1111
1212
Circuit:
13-
* WiFi shield attached
13+
* Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
1414
1515
created 18 Dec 2009
1616
by David A. Mellis

examples/WiFiPing/WiFiPing.ino

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
33
This example connects to a encrypted WiFi network (WPA/WPA2).
4-
Then it prints the MAC address of the WiFi module,
4+
Then it prints the MAC address of the board,
55
the IP address obtained, and other network details.
66
Then it continuously pings given host specified by IP Address or name.
77
88
Circuit:
9-
WiFi shield attached / MKR1000
9+
* Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
1010
1111
created 13 July 2010
1212
by dlf (Metodo2 srl)
@@ -82,7 +82,7 @@ void loop() {
8282
}
8383

8484
void printWiFiData() {
85-
// print your WiFi shield's IP address:
85+
// print your board's IP address:
8686
IPAddress ip = WiFi.localIP();
8787
Serial.print("IP address : ");
8888
Serial.println(ip);

examples/WiFiWebClient/WiFiWebClient.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
WEP or WPA, change the Wifi.begin() call accordingly.
1313
1414
Circuit:
15-
* WiFi shield attached
15+
* Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
1616
1717
created 13 July 2010
1818
by dlf (Metodo2 srl)

0 commit comments

Comments
 (0)