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.
<ahref="https://www.buymeacoffee.com/khoihprog6"title="Donate to my libraries using BuyMeACoffee"><imgsrc="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"alt="Donate to my libraries using BuyMeACoffee"style="height: 50px!important;width: 181px!important;" ></a>
9
10
<ahref="https://www.buymeacoffee.com/khoihprog6"title="Donate to my libraries using BuyMeACoffee"><imgsrc="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00"style="height: 20px!important;width: 200px!important;" ></a>
@@ -164,7 +167,6 @@ This library is based on, modified from:
164
167
3.**STM32 using built-in LAN8742A**
165
168
4.**Portenta_H7 using either Ethernet or built-in WiFi**
166
169
167
-
168
170
---
169
171
---
170
172
@@ -183,6 +185,7 @@ This library is based on, modified from:
183
185
## Installation
184
186
185
187
### Use Arduino Library Manager
188
+
186
189
The best and easiest way is to use `Arduino Library Manager`. Search for `AsyncHTTPSRequest_Generic`, then select / install the latest version. You can also use this link [](https://www.ardu-badge.com/AsyncHTTPSRequest_Generic) for more detailed instructions.
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](examples/AsyncHTTPSRequest_ESP) on ESP32_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL).
348
351
349
-
```
352
+
```cpp
350
353
Starting AsyncHTTPSRequest_ESP using ESP32_DEV
351
354
AsyncTCP_SSL v1.3.1
352
355
AsyncHTTPSRequest_Generic v2.2.1
@@ -405,7 +408,7 @@ week_number: 45
405
408
406
409
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](examples/AsyncHTTPSRequest_ESP) on ESP32S2_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL).
407
410
408
-
```
411
+
```cpp
409
412
Starting AsyncHTTPSRequest_ESP using ESP32S2_DEV
410
413
AsyncTCP_SSL v1.3.1
411
414
AsyncHTTPSRequest_Generic v2.2.1
@@ -482,7 +485,7 @@ week_number: 45
482
485
483
486
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP](examples/AsyncHTTPSRequest_ESP) on ESP32C3_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL).
484
487
485
-
```
488
+
```cpp
486
489
Starting AsyncHTTPSRequest_ESP using ESP32C3_DEV
487
490
AsyncTCP_SSL v1.3.1
488
491
AsyncHTTPSRequest_Generic v2.2.1
@@ -535,7 +538,7 @@ week_number: 45
535
538
536
539
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFiManager](examples/AsyncHTTPSRequest_ESP_WiFiManager) on ESP32_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL), and [ESPAsync_WiFiManager Library](https://github.com/khoih-prog/ESPAsync_WiFiManager)
537
540
538
-
```
541
+
```cpp
539
542
Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32_DEV
540
543
ESPAsync_WiFiManager v1.15.0
541
544
AsyncTCP_SSL v1.3.1
@@ -571,7 +574,7 @@ H
571
574
572
575
Following is the debug terminal when running example [AsyncHTTPSRequest_WT32_ETH01](examples/WT32_ETH01/AsyncHTTPSRequest_WT32_ETH01) on WT32_ETH01 to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL) and **ESP32 core v2.0.0**
573
576
574
-
```
577
+
```cpp
575
578
Starting AsyncHTTPSRequest_WT32_ETH01 using ESP32_DEV with ETH_PHY_LAN8720
576
579
WebServer_WT32_ETH01 v1.5.0for core v2.0.0+
577
580
AsyncTCP_SSL v1.3.1
@@ -605,7 +608,7 @@ week_number: 45
605
608
606
609
Following is the debug terminal when running example [AsyncHTTPSRequest_WT32_ETH01](examples/WT32_ETH01/AsyncHTTPSRequest_WT32_ETH01) on WT32_ETH01 to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL) and **ESP32 core v1.0.6**
607
610
608
-
```
611
+
```cpp
609
612
Starting AsyncHTTPSRequest_WT32_ETH01 using ESP32_DEV with ETH_PHY_LAN8720
610
613
WebServer_WT32_ETH01 v1.5.0for core v1.0.6-
611
614
AsyncTCP_SSL v1.3.1
@@ -639,7 +642,7 @@ week_number: 45
639
642
640
643
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFiManager](examples/AsyncHTTPSRequest_ESP_WiFiManager) on ESP32C3_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL), and [ESPAsync_WiFiManager Library](https://github.com/khoih-prog/ESPAsync_WiFiManager)
641
644
642
-
```
645
+
```cpp
643
646
Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32C3_DEV
644
647
ESPAsync_WiFiManager v1.15.0
645
648
AsyncHTTPSRequest_Generic v2.2.1
@@ -696,7 +699,7 @@ HH
696
699
697
700
Following is the debug terminal when running example [AsyncHTTPSRequest_ESP_WiFiManager](examples/AsyncHTTPSRequest_ESP_WiFiManager) on ESP32S3_DEV to demonstrate the operation of SSL Async HTTPS request, using [AsyncTCP_SSL Library](https://github.com/khoih-prog/AsyncTCP_SSL), and [ESPAsync_WiFiManager Library](https://github.com/khoih-prog/ESPAsync_WiFiManager)
698
701
699
-
```
702
+
```cpp
700
703
Starting AsyncHTTPSRequest_ESP_WiFiManager using LittleFS on ESP32S3_DEV
701
704
ESPAsync_WiFiManager v1.15.0
702
705
AsyncHTTPSRequest_Generic v2.2.1
@@ -732,7 +735,7 @@ HHHH
732
735
733
736
The terminal output of [AsyncHTTPSRequest_ESP_Multi example](examples/AsyncHTTPSRequest_ESP_Multi) running on `ESP32_DEV` to demonstrate how to send requests to multiple addresses and receive responses from them.
734
737
735
-
```
738
+
```cpp
736
739
Starting AsyncHTTPSRequest_ESP_Multi on ESP32_DEV
737
740
AsyncTCP_SSL v1.3.1
738
741
AsyncHTTPSRequest_Generic v2.2.1
@@ -806,7 +809,7 @@ H
806
809
807
810
The terminal output of [AsyncHTTP_HTTPSRequest_ESP example](examples/AsyncHTTP_HTTPSRequest_ESP) running on `ESP32_DEV` to demonstrate how to send HTTP and HTTPS requests to multiple addresses and receive responses from them.
808
811
809
-
```
812
+
```cpp
810
813
Starting AsyncHTTP_HTTPSRequest_ESP on ESP32_DEV
811
814
AsyncTCP_SSL v1.3.1
812
815
AsyncHTTPSRequest_Generic v2.2.1
@@ -927,7 +930,7 @@ Submit issues to: [AsyncHTTPSRequest_Generic issues](https://github.com/khoih-pr
927
930
928
931
1. Fix bug. Add enhancement
929
932
2. Add support to more Ethernet / WiFi shields
930
-
3. Add support to RP2040W, ESP8266, Portenta_H7, STM32 and many more boards
933
+
3. Add support to `RP2040W`, `ESP8266`, `Portenta_H7`, `STM32` and many more boards
931
934
4. Add many more examples.
932
935
933
936
---
@@ -955,6 +958,8 @@ Submit issues to: [AsyncHTTPSRequest_Generic issues](https://github.com/khoih-pr
955
958
19. Not try to reconnect to the same `host:port` after connected.
956
959
20. Fix crash and memory leak
957
960
21. Default to reconnect to the same `host:port` after connected for new HTTP sites.
<ahref="https://www.buymeacoffee.com/khoihprog6"title="Donate to my libraries using BuyMeACoffee"><imgsrc="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png"alt="Donate to my libraries using BuyMeACoffee"style="height: 50px!important;width: 181px!important;" ></a>
10
+
<ahref="https://www.buymeacoffee.com/khoihprog6"title="Donate to my libraries using BuyMeACoffee"><imgsrc="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00"style="height: 20px!important;width: 200px!important;" ></a>
0 commit comments