Skip to content

Commit df69ca2

Browse files
committed
Rename WiFi1010 -> WiFiNINA
1 parent 646b5f7 commit df69ca2

File tree

22 files changed

+27
-27
lines changed

22 files changed

+27
-27
lines changed

README.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
= WiFi1010 Library for Arduino =
1+
= WiFiNINA Library for Arduino =
22

33
Enables network connection (local and Internet) with the Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000 and Arduino UNO WiFi Rev.2.
44

55
With this library you can instantiate Servers, Clients and send/receive UDP packets through WiFi. The board can connect either to open or encrypted networks (WEP, WPA). The IP address can be assigned statically or through a DHCP. The library can also manage DNS.
66

77
For more information about this library please visit us at
8-
http://www.arduino.cc/en/Reference/WiFi1010
8+
http://www.arduino.cc/en/Reference/WiFiNINA
99

1010
== License ==
1111

examples/AP_SimpleWebServer/AP_SimpleWebServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
*/
1818

1919
#include <SPI.h>
20-
#include <WiFi1010.h>
20+
#include <WiFiNINA.h>
2121
#include "arduino_secrets.h"
2222
///////please enter your sensitive data in the Secret tab/arduino_secrets.h
2323
char ssid[] = SECRET_SSID; // your network SSID (name)

examples/ConnectNoEncryption/ConnectNoEncryption.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
by Tom Igoe
1111
*/
1212
#include <SPI.h>
13-
#include <WiFi1010.h>
13+
#include <WiFiNINA.h>
1414

1515
#include "arduino_secrets.h"
1616
///////please enter your sensitive data in the Secret tab/arduino_secrets.h

examples/ConnectWithWEP/ConnectWithWEP.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
by Tom Igoe
2121
*/
2222
#include <SPI.h>
23-
#include <WiFi1010.h>
23+
#include <WiFiNINA.h>
2424

2525
#include "arduino_secrets.h"
2626
///////please enter your sensitive data in the Secret tab/arduino_secrets.h

examples/ConnectWithWPA/ConnectWithWPA.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
by Tom Igoe
1111
*/
1212
#include <SPI.h>
13-
#include <WiFi1010.h>
13+
#include <WiFiNINA.h>
1414

1515
#include "arduino_secrets.h"
1616
///////please enter your sensitive data in the Secret tab/arduino_secrets.h

examples/ScanNetworks/ScanNetworks.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717

1818
#include <SPI.h>
19-
#include <WiFi1010.h>
19+
#include <WiFiNINA.h>
2020

2121
void setup() {
2222
//Initialize serial and wait for port to open:

examples/ScanNetworksAdvanced/ScanNetworksAdvanced.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515

1616
#include <SPI.h>
17-
#include <WiFi1010.h>
17+
#include <WiFiNINA.h>
1818

1919
void setup() {
2020
//Initialize serial and wait for port to open:

examples/SimpleWebServerWiFi/SimpleWebServerWiFi.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
by Tom Igoe
2222
*/
2323
#include <SPI.h>
24-
#include <WiFi1010.h>
24+
#include <WiFiNINA.h>
2525

2626
#include "arduino_secrets.h"
2727
///////please enter your sensitive data in the Secret tab/arduino_secrets.h

examples/Tools/WiFi1010FirmwareUpdate/WiFi1010FirmwareUpdate.ino renamed to examples/Tools/WiFiNINAFirmwareUpdater/WiFiNINAFirmwareUpdater.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
WiFi1010FirmwareUpdater - Firmware Updater for the
3-
Arduino MKR WiFi101, Arduino MKR Vidor 4000, and Arduino UNO WiFi Rev.2.
2+
WiFiNINAFirmwareUpdater - Firmware Updater for the
3+
Arduino MKR WiFi 1010, Arduino MKR Vidor 4000, and Arduino UNO WiFi Rev.2.
44
55
Copyright (C) 2018 Arduino AG (http://www.arduino.cc/)
66

examples/WiFiChatServer/WiFiChatServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121

2222
#include <SPI.h>
23-
#include <WiFi1010.h>
23+
#include <WiFiNINA.h>
2424

2525
#include "arduino_secrets.h"
2626
///////please enter your sensitive data in the Secret tab/arduino_secrets.h

0 commit comments

Comments
 (0)