- Notifications
You must be signed in to change notification settings - Fork10
Asynchronous SSL TCP Library for ESP32, ESP32_C3, ESP32_S2, ESP32_S3. This library is the base for future and more advanced Async SSL libraries, such as AsyncSSLWebServer, AsyncHTTPSRequest
License
khoih-prog/AsyncTCP_SSL
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
- Important Note for ESP32_S3
- Important Change from v1.2.0
- Why do we need this AsyncTCP_SSL library
- Changelog
- Prerequisites
- Installation
- Note for Platform IO using ESP32 LittleFS
- HOWTO Fix
Multiple DefinitionsLinker Error - Note for Platform IO using ESP32 LittleFS
- HOWTO Use analogRead() with ESP32 running WiFi and/or BlueTooth (BT/BLE)
- Original documentation
- Examples
- Debug Terminal Output Samples
- Debug
- Troubleshooting
- Issues
- TO DO
- DONE
- Contributions and Thanks
- Contributing
- License
- Copyright
Don't useESP32_S3 with core v2.0.4. Checkalready fixedESP32-S3 Powercycling right after uploading a sketch using Arduino IDE and Arduino Core 2.0.4 #7165
ESP32_S3 is OK now with core v2.0.5
Please have a look atHOWTO FixMultiple Definitions Linker Error
Why do we need thisAsyncTCP_SSL library
This library is based on, modified from:
to apply the better and fasterasynchronous feature of thepowerfulAsyncTCP Library with SSL, and will be the base for future and more advanced Async libraries for ESP32, such as AsyncSSLWebServer, AsyncHTTPSRequest, etc.
- Using asynchronous network means that you can handlemore than one connection at the same time
- You are called once the request is ready and parsed
- When you send the response, you areimmediately ready to handle other connections while the server is taking care of sending the response in the background
- Speed is OMG
- Easy to use API, HTTP Basic and Digest MD5 Authentication (default), ChunkedResponse
- Easily extensible to handleany type of content
- Supports Continue 100
- Async WebSocket plugin offering different locations without extra servers or ports
- Async EventSource (Server-Sent Events) plugin to send events to the browser
- URL Rewrite plugin for conditional and permanent url rewrites
- ServeStatic plugin that supports cache, Last-Modified, default index and more
- Simple template processing engine to handle templates
ESP32boards, such as ESP32_DEV, etc.ESP32_S2-based boards, such as ESP32S2_DEV, ESP32_S2 Saola, etc.ESP32_C3-based boards, such as ESP32C3_DEV, etc.ESP32_S3-based boards, such as ESP32S3_DEV, etc., using ESP32 corev2.0.3orv2.0.5+
Arduino IDE 1.8.19+for Arduino.ESP32 Core 2.0.5+for ESP32-based boards.for ESP32, ESP32_S2, ESP32_C3
ESP32 Core 2.0.4can't be used for ESP32_S3-based boards. Checkalready fixedESP32-S3 Powercycling right after uploading a sketch using Arduino IDE and Arduino Core 2.0.4 #7165
The best and easiest way is to useArduino Library Manager. Search forAsyncTCP_SSL, then select / install the latest version.You can also use this link for more detailed instructions.
Another way to install is to:
- Navigate toAsyncTCP_SSL page.
- Download the latest release
AsyncTCP_SSL-main.zip. - Extract the zip file to
AsyncTCP_SSL-maindirectory - Copy whole
AsyncTCP_SSL-mainfolder to Arduino libraries' directory such as~/Arduino/libraries/.
- InstallVS Code
- InstallPlatformIO
- InstallAsyncTCP_SSL library by usingLibrary Manager. Search forAsyncTCP_SSL inPlatform.io Author's Libraries
- Use includedplatformio.ini file from examples to ensure that all dependent libraries will installed automatically. Please visit documentation for the other options and examples atProject Configuration File
In Platform IO, to fix the error when usingLittleFS_esp32 v1.0 for ESP32-based boards with ESP32 core v1.0.4- (ESP-IDF v3.2-), uncomment the following line
from
//#define CONFIG_LITTLEFS_FOR_IDF_3_2 /* For old IDF - like in release 1.0.4 */to
#defineCONFIG_LITTLEFS_FOR_IDF_3_2/* For old IDF - like in release 1.0.4*/
It's advisable to use the latestLittleFS_esp32 v1.0.5+ to avoid the issue.
Thanks toRoshan to report the issue inError esp_littlefs.c 'utime_p'
The current library implementation, usingxyz-Impl.h instead of standardxyz.cpp, possibly creates certainMultiple Definitions Linker error in certain use cases.
You can include this.hpp file
// Can be included as many times as necessary, without `Multiple Definitions` Linker Error#include"AsyncTCP_SSL.hpp"//https://github.com/khoih-prog/AsyncTCP_SSL
in many files. But be sure to use the following.h filein just 1.h,.cpp or.ino file, which mustnot be included in any other file, to avoidMultiple Definitions Linker Error
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error#include"AsyncTCP_SSL.h"//https://github.com/khoih-prog/AsyncTCP_SSL
Check the newmultiFileProject example for aHOWTO demo.
In Platform IO, to fix the error when usingLittleFS_esp32 v1.0 for ESP32-based boards with ESP32 core v1.0.4- (ESP-IDF v3.2-), uncomment the following line
from
//#define CONFIG_LITTLEFS_FOR_IDF_3_2 /* For old IDF - like in release 1.0.4 */to
#defineCONFIG_LITTLEFS_FOR_IDF_3_2/* For old IDF - like in release 1.0.4*/
It's advisable to use the latestLittleFS_esp32 v1.0.5+ to avoid the issue.
Thanks toRoshan to report the issue inError esp_littlefs.c 'utime_p'
Please have a look atESP_WiFiManager Issue 39: Not able to read analog port when using the autoconnect example to have more detailed description and solution of the issue.
- ADC1 controls ADC function for pinsGPIO32-GPIO39
- ADC2 controls ADC function for pinsGPIO0, 2, 4, 12-15, 25-27
Look in fileadc_common.c
In ADC2, there're two locks used for different cases:
lock shared with app and Wi-Fi:ESP32:When Wi-Fi using the ADC2, we assume it will never stop, so app checks the lock and returns immediately if failed.ESP32S2:The controller's control over the ADC is determined by the arbiter. There is no need to control by lock.
lock shared between tasks:when several tasks sharing the ADC2, we want to guaranteeall the requests will be handled.Since conversions are short (about 31us), app returns the lock very soon,we use a spinlock to stand there waiting to do conversions one by one.
adc2_spinlock should be acquired first, then adc2_wifi_lock or rtc_spinlock.
- In order to use ADC2 for other functions, we have toacquire complicated firmware locks and very difficult to do
- So, it's not advisable to use ADC2 with WiFi/BlueTooth (BT/BLE).
- Use ADC1, and pins GPIO32-GPIO39
- If somehow it's a must to use those pins serviced by ADC2 (GPIO0, 2, 4, 12, 13, 14, 15, 25, 26 and 27), use thefix mentioned at the end ofESP_WiFiManager Issue 39: Not able to read analog port when using the autoconnect example to work with ESP32 WiFi/BlueTooth (BT/BLE).
For ESP32, checkAsyncTCP Library
This is a fully asynchronous SSL TCP library, aimed at enabling trouble-free, multi-connection network environment for Espressif's ESP32 MCUs.
The base classes on which everything else is built. They expose all possible scenarios, but are really raw and require more skills to use.
- multiFileProject.New
Following is the debug terminal when running exampleAsyncHTTPSRequest_ESP on ESP32_DEV to demonstrate the operation of SSL Async HTTPS request, usingAsyncTCP_SSL Library.
Starting AsyncHTTPSRequest_ESPusing ESP32_DEVAsyncTCP_SSL v1.3.1AsyncHTTPSRequest_Generic v2.1.2Connecting to WiFi SSID: HueNet1.......AsyncHTTPSRequest @ IP :192.168.2.133**************************************abbreviation: EDTclient_ip: aaa.bbb.ccc.ddddatetime:2022-09-18T01:35:32.451975-04:00day_of_week:0day_of_year:261dst:truedst_from:2022-03-13T07:00:00+00:00dst_offset:3600dst_until:2022-11-06T06:00:00+00:00raw_offset: -18000timezone: America/Torontounixtime:1663479332utc_datetime:2022-09-18T05:35:32.451975+00:00utc_offset: -04:00week_number:37**************************************HHHHHH**************************************abbreviation: EDTclient_ip: aaa.bbb.ccc.ddddatetime:2022-09-18T01:36:31.992595-04:00day_of_week:0day_of_year:261dst:truedst_from:2022-03-13T07:00:00+00:00dst_offset:3600dst_until:2022-11-06T06:00:00+00:00raw_offset: -18000timezone: America/Torontounixtime:1663479391utc_datetime:2022-09-18T05:36:31.992595+00:00utc_offset: -04:00week_number:37
Following is the debug terminal when running exampleAsyncHTTPSRequest_ESP on ESP32S2_DEV to demonstrate the operation of SSL Async HTTPS request, usingAsyncTCP_SSL Library.
Starting AsyncHTTPSRequest_ESPusing ESP32S2_DEVAsyncTCP_SSL v1.3.1AsyncHTTPSRequest_Generic v2.1.2Connecting to WiFi SSID: HueNet1.......AsyncHTTPSRequest @ IP :192.168.2.79[ATCP] _handle_async_event: LWIP_TCP_DNS =0x3FFE4E24[ATCP] _handle_async_event: LWIP_TCP_DNS, name = worldtimeapi.org , IP =213.188.196.246[ATCP] _handle_async_event: LWIP_TCP_CONNECTED =0x3FFE4E240x3FFE5024[ATCP] _handle_async_event: LWIP_TCP_CONNECTED =0[ATCP] _handle_async_event: LWIP_TCP_SENT =0x3FFE5024[ATCP] _sent: len =305[ATCP] _handle_async_event: LWIP_TCP_RECV =0x3FFE5024[ATCP] _recv: tot_len =1436[ATCP] _handle_async_event: LWIP_TCP_RECV =0x3FFE5024[ATCP] _recv: tot_len =1436[ATCP] _handle_async_event: LWIP_TCP_RECV =0x3FFE5024[ATCP] _recv: tot_len =1242[ATCP] _handle_async_event: LWIP_TCP_SENT =0x3FFE5024[ATCP] _sent: len =107[ATCP] _handle_async_event: LWIP_TCP_SENT =0x3FFE5024[ATCP] _sent: len =6[ATCP] _handle_async_event: LWIP_TCP_SENT =0x3FFE5024[ATCP] _sent: len =45[ATCP] _handle_async_event: LWIP_TCP_RECV =0x3FFE5024[ATCP] _recv: tot_len =51[ATCP] _handle_async_event: LWIP_TCP_SENT =0x3FFE5024[ATCP] _sent: len =106[ATCP] _handle_async_event: LWIP_TCP_RECV =0x3FFE5024[ATCP] _recv: tot_len =1016**************************************abbreviation: EDTclient_ip: aaa.bbb.ccc.ddddatetime:2022-09-18T01:46:31.858783-04:00day_of_week:0day_of_year:261dst:truedst_from:2022-03-13T07:00:00+00:00dst_offset:3600dst_until:2022-11-06T06:00:00+00:00raw_offset: -18000timezone: America/Torontounixtime:1663479991utc_datetime:2022-09-18T05:46:31.858783+00:00utc_offset: -04:00week_number:37**************************************
Following is the debug terminal when running exampleAsyncHTTPSRequest_ESP on ESP32C3_DEV to demonstrate the operation of SSL Async HTTPS request, usingAsyncTCP_SSL Library.
Starting AsyncHTTPSRequest_ESPusing ESP32C3_DEVAsyncTCP_SSL v1.3.1AsyncHTTPSRequest_Generic v2.1.2Connecting to WiFi SSID: HueNet1.........AsyncHTTPSRequest @ IP :192.168.2.80**************************************abbreviation: EDTclient_ip: aaa.bbb.ccc.ddddatetime:2022-09-18T01:35:32.451975-04:00day_of_week:0day_of_year:261dst:truedst_from:2022-03-13T07:00:00+00:00dst_offset:3600dst_until:2022-11-06T06:00:00+00:00raw_offset: -18000timezone: America/Torontounixtime:1663479332utc_datetime:2022-09-18T05:35:32.451975+00:00utc_offset: -04:00week_number:37**************************************
Following is the debug terminal when running exampleAsyncHTTPSRequest_ESP_WiFiManager on ESP32_DEV to demonstrate the operation of SSL Async HTTPS request, usingAsyncTCP_SSL Library, andESPAsync_WiFiManager Library
Starting AsyncHTTPSRequest_ESP_WiFiManagerusing LittleFS on ESP32_DEVESPAsync_WiFiManager v1.14.1AsyncTCP_SSL v1.3.1AsyncHTTPSRequest_Generic v2.1.2Stored: SSID = HueNet1, Pass =12345678Got stored Credentials. Timeout 120sConnectMultiWiFi in setupAfter waiting11.38 secs more insetup(), connection result is connected. Local IP: 192.168.2.232H**************************************abbreviation: EDTclient_ip: aaa.bbb.ccc.ddddatetime: 2022-09-18T01:36:31.992595-04:00day_of_week: 0day_of_year: 261dst: truedst_from: 2022-03-13T07:00:00+00:00dst_offset: 3600dst_until: 2022-11-06T06:00:00+00:00raw_offset: -18000timezone: America/Torontounixtime: 1663479391utc_datetime: 2022-09-18T05:36:31.992595+00:00utc_offset: -04:00week_number: 37**************************************H
Following is the debug terminal when running exampleAsyncHTTPSRequest_ESP_Multi onESP32S3_DEV on ESP32 core v2.0.5 to demonstrate the operation of SSL Async HTTPS request, usingAsyncTCP_SSL Library
Starting AsyncHTTPSRequest_ESP_Multi on ESP32S3_DEVAsyncTCP_SSL v1.3.1AsyncHTTPSRequest_Generic v2.1.2Connecting to WiFi SSID: HueNet1...AsyncHTTPSRequest @ IP :192.168.2.187Sending request: https://worldtimeapi.org/api/timezone/Europe/Prague.txtSending request: https://www.myexternalip.com/raw[AHTTPS] _onError handler SSL error = OK[AHTTPS] _onError handler SSL error = OK**************************************[AHTTPS] Response Code = HTTP OK**************************************aaa.bbb.ccc.ddd****************************************************************************[AHTTPS] Response Code = HTTP OK**************************************abbreviation: CESTclient_ip: aaa.bbb.ccc.ddddatetime:2022-09-18T07:50:04.395849+02:00day_of_week:0day_of_year:261dst:truedst_from:2022-03-27T01:00:00+00:00dst_offset:3600dst_until:2022-10-30T01:00:00+00:00raw_offset:3600timezone: Europe/Pragueunixtime:1663480204utc_datetime:2022-09-18T05:50:04.395849+00:00utc_offset: +02:00week_number:37**************************************Sending request: https://worldtimeapi.org/api/timezone/America/Toronto.txt**************************************[AHTTPS] Response Code = HTTP OK**************************************abbreviation: EDTclient_ip: aaa.bbb.ccc.ddddatetime:2022-09-18T01:50:05.382100-04:00day_of_week:0day_of_year:261dst:truedst_from:2022-03-13T07:00:00+00:00dst_offset:3600dst_until:2022-11-06T06:00:00+00:00raw_offset: -18000timezone: America/Torontounixtime:1663480205utc_datetime:2022-09-18T05:50:05.382100+00:00utc_offset: -04:00week_number:37**************************************H
Debug is enabled by default on Serial.
You can also change the debugging level_ASYNC_TCP_SSL_LOGLEVEL_ from 0 to 4 in the sketch
#define_ASYNC_TCP_SSL_LOGLEVEL_1
If you get compilation errors, more often than not, you may need to install a newer version of the core for Arduino boards.
Sometimes, the library will only work if you update the board core to the latest version because I am using newly added functions.
Submit issues to:AsyncTCP_SSL issues
- Search for bug and improvement.
- Similar Async SSL libraries for ESP8266, STM32, Portenta_H7 and many other boards
- Permit both HTTP and HTTPS
- Add support to ESP32 using SSL
- Add Table of Contents
- Add debug feature
- Fix
multiple-definitionslinker error - Add examples
- Remove hard-code if possible
- Improve debug messages by adding functions to display
error/state messagesinstead ofcryptic error/state number - Add support to
ESP32_S3, using ESP32 corev2.0.3orv2.0.5+.Don't useESP32_S3with core v2.0.4. Checkalready fixedESP32-S3 Powercycling right after uploading a sketch using Arduino IDE and Arduino Core 2.0.4 #7165 - Increase
ASYNC_QUEUE_LENGTHto default512 from 32 and make it user-configurable - Increase
ASYNC_TCP_PRIORITYto default10 from 3, and make it user-configurable
Many thanks for everyone for bug reporting, new feature suggesting, testing and contributing to the development of this library.
- Based on and modified fromHristo Gochkov's AsyncTCP. Many thanks toHristo Gochkov for greatAsyncTCP Library
- Based onMaarten Fremouw's AsyncTCP Library.
- Based onThorsten von Eicken's AsyncTCP Library.
![]() ⭐️⭐️ Hristo Gochkov | ![]() Maarten Fremouw | ![]() Thorsten von Eicken |
If you want to contribute to this project:
- Report bugs and errors
- Ask for enhancements
- Create issues and pull requests
- Tell other people about this library
- The library is licensed underLGPLv3
- Copyright (c) 2016- Hristo Gochkov
- Copyright (c) 2019- Maarten Fremouw
- Copyright (c) 2019- Thorsten von Eicken
- Copyright (c) 2021- Khoi Hoang
About
Asynchronous SSL TCP Library for ESP32, ESP32_C3, ESP32_S2, ESP32_S3. This library is the base for future and more advanced Async SSL libraries, such as AsyncSSLWebServer, AsyncHTTPSRequest
Topics
Resources
License
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Uh oh!
There was an error while loading.Please reload this page.



