Skip to content

Commit 77c1b9b

Browse files
committed
Fix typos
1 parent 8df14c3 commit 77c1b9b

38 files changed

+105
-145
lines changed

CHANGELOG

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ WiFi101 ?.?.? - ????.??.??
33
WiFi101 0.16.0 - 2018.04.04
44

55
* Added WiFi.setTimeout(timeout) API to set timeout of WiFi.begin(...)
6-
* Changed check firmware version comparision from == to >=
6+
* Changed check firmware version comparison from == to >=
77
* Updated latest firmware version for model B to 19.6.1
88

99
WiFi101 0.15.3 - 2018.11.21
1010

1111
* Fixed unreachable destination issue in UDP packet transmission
12-
* Changed where required, in library's examples, the server's URL arduino.cc\80 in example.org\80, because http://arduino.cc will be no longer available
13-
* Changed the MAC address print in the library's example now are showed corectly all the MAC address chars
14-
* Fixed WiFiUDP::endPacket() return value in accord with sendig returns. Thanks to @mjlitke @jrowberg
12+
* Changed where required, in library's examples, the server's URL arduino.cc\80 to example.org\80, because http://arduino.cc will be no longer available
13+
* Changed the MAC address print in the library's example now are showed correctly all the MAC address chars
14+
* Fixed WiFiUDP::endPacket() return value in accord with sending returns. Thanks to @mjlitke @jrowberg
1515
* Changed WiFiSocketClass::create(...) return condition. Thanks to @jrowberg
1616
* Changed server and URL to avoid 301 response from Server
1717
* Fixed initialization Server issue by adding socket initialization in WiFiServer::WiFiServer constructor
@@ -45,7 +45,7 @@ WiFi101 0.14.2 - 2017.05.08
4545
WiFi101 0.14.1 - 2017.04.20
4646

4747
* Fixed issues with WiFiMDNSResponder and Windows using Bonjour
48-
* Correct cast of buffer size when processing received data
48+
* Correct cast of buffer size when processing received data
4949

5050
WiFi101 0.14.0 - 2017.03.22
5151

@@ -69,7 +69,7 @@ WiFi101 0.12.0 - 2017.01.05
6969
* Fixed WiFi.getTime() not returning 0, if time has not been synced via NTP
7070
* Fixed crashing when connecting after scanning
7171
* Fixed WiFiServer::available() returning valid client on outbound client connection
72-
* Added WiFiUdp::beginMulticast(port) function for compatiblity with EthernetUdp, as beginMulti was inconsistent
72+
* Added WiFiUdp::beginMulticast(port) function for compatibility with EthernetUdp, as beginMulti was inconsistent
7373

7474
WiFi101 0.11.2 - 2016.12.15
7575

@@ -93,7 +93,7 @@ WiFi101 0.10.0 - 2016.09.08
9393

9494
* Added WiFi.end() to disconnect from the AP or end AP mode
9595
* Added new WiFi.ping(...) functionality. Thanks @PKGeorgiev
96-
* Added WiFi.setPins(...) to customize the CS, INTN, RESET and CHIPEN pins
96+
* Added WiFi.setPins(...) to customize the CS, INTN, RESET and CHIPEN pins
9797
* Add new WL_AP_LISTENING, WL_AP_CONNECTED, and WL_AP_FAILED status types for AP mode
9898
* Fixed return value of WiFiUDP::beginPacket(host, port) when host is successfully resolved
9999
* Added power management methods: WiFi.lowPowerMode(), WiFi.maxLowPowerMode(), WiFi.noLowPowerMode()
@@ -128,7 +128,7 @@ WiFi101 0.8.0 - 2016.02.15
128128
WiFi101 0.7.0 - 2015.01.11
129129

130130
* Added support for WiFi Firmware 19.4.4
131-
* WiFi.hostByName(...) will not try resolve the domain name if it's already a numeric IP
131+
* WiFi.hostByName(...) will not try to resolve the domain name if it's already a numeric IP
132132
* Fixed manual IP configuration (no DHCP)
133133
* Fixed WiFiServer.available(), now follows API specification
134134
* Fixed WEP key connection
@@ -140,7 +140,7 @@ WiFi101 0.6.0 - 2015.11.27
140140

141141
* Fixed bug with AVR boards when Web Server is used
142142
* Fixed UDP read bug on AVR Boards
143-
* Added missing inlcude for SSL Client
143+
* Added missing include for SSL Client
144144
* Fixed peek() function
145145
* Fixed some examples
146146

examples/AP_SimpleWebServer/AP_SimpleWebServer.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ void setup() {
4141

4242
// check for the presence of the shield:
4343
if (WiFi.status() == WL_NO_SHIELD) {
44-
Serial.println("WiFi shield not present");
44+
Serial.println("WiFi 101 Shield not present");
4545
// don't continue
4646
while (true);
4747
}
@@ -54,7 +54,7 @@ void setup() {
5454
Serial.print("Creating access point named: ");
5555
Serial.println(ssid);
5656

57-
// Create open network. Change this line if you want to create an WEP network:
57+
// Create open network. Change this line if you want to create a WEP network:
5858
status = WiFi.beginAP(ssid);
5959
if (status != WL_AP_LISTENING) {
6060
Serial.println("Creating access point failed");
@@ -76,7 +76,7 @@ void setup() {
7676
void loop() {
7777
// compare the previous status to the current status
7878
if (status != WiFi.status()) {
79-
// it has changed update the variable
79+
// it has changed, so update the variable
8080
status = WiFi.status();
8181

8282
if (status == WL_AP_CONNECTED) {
@@ -98,7 +98,7 @@ void loop() {
9898
Serial.println("new client"); // print a message out the serial port
9999
String currentLine = ""; // make a String to hold incoming data from the client
100100
while (client.connected()) { // loop while the client's connected
101-
if (client.available()) { // if there's bytes to read from the client,
101+
if (client.available()) { // if there are bytes to read from the client,
102102
char c = client.read(); // read a byte, then
103103
Serial.write(c); // print it out the serial monitor
104104
if (c == '\n') { // if the byte is a newline character
@@ -149,7 +149,7 @@ void printWiFiStatus() {
149149
Serial.print("SSID: ");
150150
Serial.println(WiFi.SSID());
151151

152-
// print your WiFi shield's IP address:
152+
// print your WiFi 101 Shield's IP address:
153153
IPAddress ip = WiFi.localIP();
154154
Serial.print("IP Address: ");
155155
Serial.println(ip);
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
#define SECRET_SSID ""
22
#define SECRET_PASS ""
3-

examples/CheckWifi101FirmwareVersion/CheckWifi101FirmwareVersion.ino

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
2-
* This example check if the firmware loaded on the WiFi101
2+
* This example checks if the firmware loaded on the WiFi101
33
* shield is updated.
44
*
55
* Circuit:
6-
* - WiFi101 Shield attached
6+
* - WiFi 101 Shield attached
77
*
88
* Created 29 July 2015 by Cristian Maglie
99
* This code is in the public domain.
@@ -24,7 +24,7 @@ void setup() {
2424
Serial.println();
2525

2626
// Check for the presence of the shield
27-
Serial.print("WiFi101 shield: ");
27+
Serial.print("WiFi 101 Shield: ");
2828
if (WiFi.status() == WL_NO_SHIELD) {
2929
Serial.println("NOT PRESENT");
3030
return; // don't continue
@@ -55,7 +55,7 @@ void setup() {
5555
Serial.println("Check result: PASSED");
5656
} else {
5757
Serial.println("Check result: NOT PASSED");
58-
Serial.println(" - The firmware version on the shield do not match the");
58+
Serial.println(" - The firmware version on the shield does not match the");
5959
Serial.println(" version required by the library, you may experience");
6060
Serial.println(" issues or failures.");
6161
}
@@ -64,4 +64,3 @@ void setup() {
6464
void loop() {
6565
// do nothing
6666
}
67-

examples/ConnectNoEncryption/ConnectNoEncryption.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
33
This example connects to an unencrypted WiFi network.
4-
Then it prints the MAC address of the WiFi shield,
4+
Then it prints the MAC address of the WiFi 101 Shield,
55
the IP address obtained, and other network details.
66
77
Circuit:
8-
* WiFi shield attached
8+
* WiFi 101 Shield attached
99
1010
created 13 July 2010
1111
by dlf (Metodo2 srl)
@@ -28,7 +28,7 @@ void setup() {
2828

2929
// check for the presence of the shield:
3030
if (WiFi.status() == WL_NO_SHIELD) {
31-
Serial.println("WiFi shield not present");
31+
Serial.println("WiFi 101 Shield not present");
3232
// don't continue:
3333
while (true);
3434
}
@@ -56,7 +56,7 @@ void loop() {
5656
}
5757

5858
void printWiFiData() {
59-
// print your WiFi shield's IP address:
59+
// print your WiFi 101 Shield's IP address:
6060
IPAddress ip = WiFi.localIP();
6161
Serial.print("IP Address: ");
6262
Serial.println(ip);

examples/ConnectWithWEP/ConnectWithWEP.ino

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/*
22
33
This example connects to a WEP-encrypted WiFi network.
4-
Then it prints the MAC address of the WiFi shield,
4+
Then it prints the MAC address of the WiFi 101 Shield,
55
the IP address obtained, and other network details.
66
77
If you use 40-bit WEP, you need a key that is 10 characters long,
88
and the characters must be hexadecimal (0-9 or A-F).
9-
e.g. for 40-bit, ABBADEAF01 will work, but ABBADEAF won't work
9+
e.g. for 40-bit, ABBADEAF01 will work, but ABBADEAF won't work
1010
(too short) and ABBAISDEAF won't work (I and S are not
1111
hexadecimal characters).
1212
@@ -15,7 +15,7 @@
1515
all in the 0-9, A-F range.
1616
1717
Circuit:
18-
* WiFi shield attached
18+
* WiFi 101 Shield attached
1919
2020
created 13 July 2010
2121
by dlf (Metodo2 srl)
@@ -41,7 +41,7 @@ void setup() {
4141

4242
// check for the presence of the shield:
4343
if (WiFi.status() == WL_NO_SHIELD) {
44-
Serial.println("WiFi shield not present");
44+
Serial.println("WiFi 101 Shield not present");
4545
// don't continue:
4646
while (true);
4747
}
@@ -69,7 +69,7 @@ void loop() {
6969
}
7070

7171
void printWiFiData() {
72-
// print your WiFi shield's IP address:
72+
// print your WiFi 101 Shield's IP address:
7373
IPAddress ip = WiFi.localIP();
7474
Serial.print("IP Address: ");
7575
Serial.println(ip);
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
#define SECRET_SSID ""
22
#define SECRET_PASS ""
3-

examples/ConnectWithWPA/ConnectWithWPA.ino

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/*
22
33
This example connects to an unencrypted WiFi network.
4-
Then it prints the MAC address of the WiFi shield,
4+
Then it prints the MAC address of the WiFi 101 Shield,
55
the IP address obtained, and other network details.
66
77
Circuit:
8-
* WiFi shield attached
8+
* WiFi 101 Shield attached
99
1010
created 13 July 2010
1111
by dlf (Metodo2 srl)
@@ -30,7 +30,7 @@ void setup() {
3030

3131
// check for the presence of the shield:
3232
if (WiFi.status() == WL_NO_SHIELD) {
33-
Serial.println("WiFi shield not present");
33+
Serial.println("WiFi 101 Shield not present");
3434
// don't continue:
3535
while (true);
3636
}
@@ -60,7 +60,7 @@ void loop() {
6060
}
6161

6262
void printWiFiData() {
63-
// print your WiFi shield's IP address:
63+
// print your WiFi 101 Shield's IP address:
6464
IPAddress ip = WiFi.localIP();
6565
Serial.print("IP Address: ");
6666
Serial.println(ip);
Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
#define SECRET_SSID ""
22
#define SECRET_PASS ""
3-

examples/FirmwareUpdater/Endianess.ino renamed to examples/FirmwareUpdater/Endianness.ino

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Endianess.ino - Network byte order conversion functions.
2+
Endianness.ino - Network byte order conversion functions.
33
Copyright (c) 2015 Arduino LLC. All right reserved.
44
55
This library is free software; you can redistribute it and/or
@@ -59,4 +59,3 @@ uint32_t toNetwork32(uint32_t to) {
5959
uint16_t toNetwork16(uint16_t to) {
6060
return fromNetwork16(to);
6161
}
62-

0 commit comments

Comments
 (0)