You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 4, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+10-8
Original file line number
Diff line number
Diff line change
@@ -149,7 +149,7 @@ to apply the better and faster **asynchronous** feature of the **powerful** [ESP
149
149
## Prerequisites
150
150
151
151
1.[`Arduino IDE 1.8.19+` for Arduino](https://github.com/arduino/Arduino). [](https://github.com/arduino/Arduino/releases/latest)
152
-
2.[`Earle Philhower's arduino-pico core v2.4.0+`](https://github.com/earlephilhower/arduino-pico) for **RASPBERRY_PI_PICO_W with CYW43439 WiFi**, etc. [](https://github.com/earlephilhower/arduino-pico/releases/latest)
152
+
2.[`Earle Philhower's arduino-pico core v2.5.2+`](https://github.com/earlephilhower/arduino-pico) for **RASPBERRY_PI_PICO_W with CYW43439 WiFi**, etc. [](https://github.com/earlephilhower/arduino-pico/releases/latest)
153
153
3.[`AsyncTCP_RP2040W library v1.0.0+`](https://github.com/khoih-prog/AsyncTCP_RP2040W) for RASPBERRY_PI_PICO_W with CYW43439 WiFi. To install. check [](https://www.ardu-badge.com/AsyncTCP_RP2040W)
154
154
155
155
---
@@ -1108,8 +1108,8 @@ int status = WL_IDLE_STATUS;
1108
1108
1109
1109
AsyncWebServer server(80);
1110
1110
1111
-
#define LED_OFF HIGH
1112
-
#define LED_ON LOW
1111
+
#define LED_OFF LOW
1112
+
#define LED_ON HIGH
1113
1113
1114
1114
#define BUFFER_SIZE 64
1115
1115
char temp[BUFFER_SIZE];
@@ -1449,7 +1449,7 @@ Following is the debug terminal when running example [Async_AdvancedWebServer](e
1449
1449
```
1450
1450
Start Async_AdvancedWebServer on RASPBERRY_PI_PICO_W with RP2040W CYW43439 WiFi
1451
1451
AsyncTCP_RP2040W v1.0.0
1452
-
AsyncWebServer_RP2040W v1.0.1
1452
+
AsyncWebServer_RP2040W v1.0.2
1453
1453
Connecting to SSID: HueNet1
1454
1454
SSID: HueNet1
1455
1455
Local IP Address: 192.168.2.180
@@ -1472,7 +1472,7 @@ Following is debug terminal output when running example [WebClient](examples/Web
1472
1472
```
1473
1473
Start WebClient on RASPBERRY_PI_PICO_W with RP2040W CYW43439 WiFi
1474
1474
AsyncTCP_RP2040W v1.0.0
1475
-
AsyncWebServer_RP2040W v1.0.1
1475
+
AsyncWebServer_RP2040W v1.0.2
1476
1476
Connecting to SSID: HueNet1
1477
1477
SSID: HueNet1
1478
1478
Local IP Address: 192.168.2.180
@@ -1549,7 +1549,7 @@ Following is debug terminal output when running example [MQTTClient_Auth](exampl
1549
1549
```
1550
1550
Start MQTTClient_Auth on RASPBERRY_PI_PICO_W with RP2040W CYW43439 WiFi
1551
1551
AsyncTCP_RP2040W v1.0.0
1552
-
AsyncWebServer_RP2040W v1.0.1
1552
+
AsyncWebServer_RP2040W v1.0.2
1553
1553
Connecting to SSID: HueNet1
1554
1554
SSID: HueNet1
1555
1555
Local IP Address: 192.168.2.180
@@ -1570,7 +1570,7 @@ Following is debug terminal output when running example [MQTTClient_Basic](examp
1570
1570
```
1571
1571
Start MQTTClient_Basic on RASPBERRY_PI_PICO_W with RP2040W CYW43439 WiFi
1572
1572
AsyncTCP_RP2040W v1.0.0
1573
-
AsyncWebServer_RP2040W v1.0.1
1573
+
AsyncWebServer_RP2040W v1.0.2
1574
1574
Connecting to SSID: HueNet1
1575
1575
SSID: HueNet1
1576
1576
Local IP Address: 192.168.2.180
@@ -1591,7 +1591,7 @@ Following is debug terminal output when running example [MQTT_ThingStream](examp
1591
1591
```
1592
1592
Start MQTT_ThingStream on RASPBERRY_PI_PICO_W with RP2040W CYW43439 WiFi
1593
1593
AsyncTCP_RP2040W v1.0.0
1594
-
AsyncWebServer_RP2040W v1.0.1
1594
+
AsyncWebServer_RP2040W v1.0.2
1595
1595
Connecting to SSID: HueNet1
1596
1596
SSID: HueNet1
1597
1597
Local IP Address: 192.168.2.180
@@ -1653,10 +1653,12 @@ Submit issues to: [AsyncWebServer_RP2040W issues](https://github.com/khoih-prog/
1653
1653
### Contributions and Thanks
1654
1654
1655
1655
1. Based on and modified from [Hristo Gochkov's ESPAsyncWebServer](https://github.com/me-no-dev/ESPAsyncWebServer). Many thanks to [Hristo Gochkov](https://github.com/me-no-dev) for great [ESPAsyncWebServer Library](https://github.com/me-no-dev/ESPAsyncWebServer)
1656
+
2. Thanks to [revell1](https://github.com/revell1) to report the bug in [LED state appears to be reversed. #2](https://github.com/khoih-prog/AsyncWebServer_RP2040W/issues/2), leading to v1.0.2
"description": "Asynchronous WebServer Library for RASPBERRY_PI_PICO_W using CYW43439 WiFi with arduino-pico core. This library, which is relied on AsyncTCP_RP2040W, is part of a series of advanced Async libraries for RP2040W, such as AsyncTCP_RP2040W, AsyncUDP_RP2040W, AsyncWebServer_RP2040W, AsyncHTTPRequest_RP2040W, AsyncHTTPSRequest_RP2040W, etc.",
0 commit comments