File tree Expand file tree Collapse file tree 6 files changed +15
-12
lines changed Expand file tree Collapse file tree 6 files changed +15
-12
lines changed Original file line number Diff line number Diff line change 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)
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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);
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
8484void 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);
Original file line number Diff line number Diff line change 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)
You can’t perform that action at this time.
0 commit comments