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 1
1
/*
2
2
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.
5
5
Every ten seconds, it scans again. It doesn't actually
6
6
connect to any network, so no encryption scheme is specified.
7
7
8
8
Circuit:
9
- * WiFi shield attached
9
+ * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
10
10
11
11
created 13 July 2010
12
12
by dlf (Metodo2 srl)
Original file line number Diff line number Diff line change 1
1
/*
2
2
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 .
5
5
Every ten seconds, it scans again. It doesn't actually
6
6
connect to any network, so no encryption scheme is specified.
7
7
BSSID and WiFi channel are printed
8
8
9
+ Circuit:
10
+ * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
11
+
9
12
This example is based on ScanNetworks
10
13
11
14
created 1 Mar 2017
Original file line number Diff line number Diff line change 14
14
WEP or WPA, change the Wifi.begin() call accordingly.
15
15
16
16
Circuit:
17
- * WiFi shield attached
17
+ * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
18
18
* LED attached to pin 9
19
19
20
20
created 25 Nov 2012
@@ -119,7 +119,7 @@ void printWifiStatus() {
119
119
Serial.print (" SSID: " );
120
120
Serial.println (WiFi.SSID ());
121
121
122
- // print your WiFi shield 's IP address:
122
+ // print your board 's IP address:
123
123
IPAddress ip = WiFi.localIP ();
124
124
Serial.print (" IP Address: " );
125
125
Serial.println (ip);
Original file line number Diff line number Diff line change 10
10
11
11
12
12
Circuit:
13
- * WiFi shield attached
13
+ * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
14
14
15
15
created 18 Dec 2009
16
16
by David A. Mellis
Original file line number Diff line number Diff line change 1
1
/*
2
2
3
3
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 ,
5
5
the IP address obtained, and other network details.
6
6
Then it continuously pings given host specified by IP Address or name.
7
7
8
8
Circuit:
9
- WiFi shield attached / MKR1000
9
+ * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
10
10
11
11
created 13 July 2010
12
12
by dlf (Metodo2 srl)
@@ -82,7 +82,7 @@ void loop() {
82
82
}
83
83
84
84
void printWiFiData () {
85
- // print your WiFi shield 's IP address:
85
+ // print your board 's IP address:
86
86
IPAddress ip = WiFi.localIP ();
87
87
Serial.print (" IP address : " );
88
88
Serial.println (ip);
Original file line number Diff line number Diff line change 12
12
WEP or WPA, change the Wifi.begin() call accordingly.
13
13
14
14
Circuit:
15
- * WiFi shield attached
15
+ * Board with NINA module (Arduino MKR WiFi 1010, MKR VIDOR 4000 and UNO WiFi Rev.2)
16
16
17
17
created 13 July 2010
18
18
by dlf (Metodo2 srl)
You can’t perform that action at this time.
0 commit comments