Skip to content
This repository was archived by the owner on Feb 4, 2023. It is now read-only.

Commit cb36807

Browse files
authored
v1.0.1 to fix minor bugs
### Release v1.0.1 1. Fix bug in examples, `library.json` 2. Enhance `README.md`
1 parent 52e6df9 commit cb36807

34 files changed

+60
-93
lines changed

changelog.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,19 @@
1111
## Table of Contents
1212

1313
* [Changelog](#changelog)
14-
* [Initial Releases v1.0.0](#Initial-Releases-v100)
14+
* [Release v1.0.1](#Release-v101)
15+
* [Initial Release v1.0.0](#Initial-Release-v100)
1516

1617
---
1718
---
1819

1920
## Changelog
2021

21-
### Initial Releases v1.0.0
22+
### Release v1.0.1
23+
24+
1. Fix bug in examples, `library.json`
25+
2. Enhance `README.md`
26+
27+
### Initial Release v1.0.0
2228

2329
1. Initial coding to support **RASPBERRY_PI_PICO_W with CYW43439 WiFi**, using [**arduino-pico core v2.4.0+**](https://github.com/earlephilhower/arduino-pico)

examples/Async_AdvancedWebServer/Async_AdvancedWebServer.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -149,12 +149,6 @@ void printWifiStatus()
149149
IPAddress ip = WiFi.localIP();
150150
Serial.print("Local IP Address: ");
151151
Serial.println(ip);
152-
153-
// print the received signal strength:
154-
long rssi = WiFi.RSSI();
155-
Serial.print("signal strength (RSSI):");
156-
Serial.print(rssi);
157-
Serial.println(" dBm");
158152
}
159153

160154
void setup()

examples/Async_HelloServer/Async_HelloServer.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -74,12 +74,6 @@ void printWifiStatus()
7474
IPAddress ip = WiFi.localIP();
7575
Serial.print("Local IP Address: ");
7676
Serial.println(ip);
77-
78-
// print the received signal strength:
79-
long rssi = WiFi.RSSI();
80-
Serial.print("signal strength (RSSI):");
81-
Serial.print(rssi);
82-
Serial.println(" dBm");
8377
}
8478

8579
void setup()

examples/Async_HelloServer2/Async_HelloServer2.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,12 +76,6 @@ void printWifiStatus()
7676
IPAddress ip = WiFi.localIP();
7777
Serial.print("Local IP Address: ");
7878
Serial.println(ip);
79-
80-
// print the received signal strength:
81-
long rssi = WiFi.RSSI();
82-
Serial.print("signal strength (RSSI):");
83-
Serial.print(rssi);
84-
Serial.println(" dBm");
8579
}
8680

8781
void setup()

examples/Async_HttpBasicAuth/Async_HttpBasicAuth.ino

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ int status = WL_IDLE_STATUS;
2626
AsyncWebServer server(80);
2727

2828
const char* www_username = "admin";
29-
const char* www_password = "portenta";
29+
const char* www_password = "rp2040w";
3030

3131
void printWifiStatus()
3232
{
@@ -38,12 +38,6 @@ void printWifiStatus()
3838
IPAddress ip = WiFi.localIP();
3939
Serial.print("Local IP Address: ");
4040
Serial.println(ip);
41-
42-
// print the received signal strength:
43-
long rssi = WiFi.RSSI();
44-
Serial.print("signal strength (RSSI):");
45-
Serial.print(rssi);
46-
Serial.println(" dBm");
4741
}
4842

4943
void setup()

examples/Async_PostServer/Async_PostServer.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,12 +108,6 @@ void printWifiStatus()
108108
IPAddress ip = WiFi.localIP();
109109
Serial.print("Local IP Address: ");
110110
Serial.println(ip);
111-
112-
// print the received signal strength:
113-
long rssi = WiFi.RSSI();
114-
Serial.print("signal strength (RSSI):");
115-
Serial.print(rssi);
116-
Serial.println(" dBm");
117111
}
118112

119113
void setup()

examples/MQTTClient_Auth/MQTTClient_Auth.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,6 @@ void printWifiStatus()
105105
IPAddress ip = WiFi.localIP();
106106
Serial.print("Local IP Address: ");
107107
Serial.println(ip);
108-
109-
// print the received signal strength:
110-
long rssi = WiFi.RSSI();
111-
Serial.print("signal strength (RSSI):");
112-
Serial.print(rssi);
113-
Serial.println(" dBm");
114108
}
115109

116110
void setup()

examples/MQTTClient_Basic/MQTTClient_Basic.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -104,12 +104,6 @@ void printWifiStatus()
104104
IPAddress ip = WiFi.localIP();
105105
Serial.print("Local IP Address: ");
106106
Serial.println(ip);
107-
108-
// print the received signal strength:
109-
long rssi = WiFi.RSSI();
110-
Serial.print("signal strength (RSSI):");
111-
Serial.print(rssi);
112-
Serial.println(" dBm");
113107
}
114108

115109
void setup()

examples/MQTT_ThingStream/MQTT_ThingStream.ino

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -157,12 +157,6 @@ void printWifiStatus()
157157
IPAddress ip = WiFi.localIP();
158158
Serial.print("Local IP Address: ");
159159
Serial.println(ip);
160-
161-
// print the received signal strength:
162-
long rssi = WiFi.RSSI();
163-
Serial.print("signal strength (RSSI):");
164-
Serial.print(rssi);
165-
Serial.println(" dBm");
166160
}
167161

168162
void setup()

examples/WebClient/WebClient.ino

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
#include "defines.h"
1515

16-
char server[] = "arduino.cc";
16+
char server[] = "arduino.tips";
1717

1818
// Initialize the Web client object
1919
WiFiClient client;
@@ -28,12 +28,6 @@ void printWifiStatus()
2828
IPAddress ip = WiFi.localIP();
2929
Serial.print("Local IP Address: ");
3030
Serial.println(ip);
31-
32-
// print the received signal strength:
33-
long rssi = WiFi.RSSI();
34-
Serial.print("signal strength (RSSI):");
35-
Serial.print(rssi);
36-
Serial.println(" dBm");
3731
}
3832

3933
void setup()
@@ -86,7 +80,7 @@ void setup()
8680
Serial.println(F("Connected to server"));
8781
// Make a HTTP request
8882
client.println(F("GET /asciilogo.txt HTTP/1.1"));
89-
client.println(F("Host: arduino.cc"));
83+
client.println(F("Host: arduino.tips"));
9084
client.println(F("Connection: close"));
9185
client.println();
9286
}

0 commit comments

Comments
 (0)