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

Commit 80ac7ee

Browse files
authored
v1.6.4 to remove unused variable
#### Releases v1.6.4 1. Remove unused variable to avoid compiler warning and error
1 parent ee6a67c commit 80ac7ee

32 files changed

+66
-43
lines changed

CONTRIBUTING.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ If you don't find anything, please [open a new issue](https://github.com/khoih-p
1515
Please ensure to specify the following:
1616

1717
* Arduino IDE version (e.g. 1.8.19) or Platform.io version
18-
* Board Core Version (e.g. ESP32 core v2.0.5)
18+
* Board Core Version (e.g. ESP32 core v2.0.6)
1919
* Contextual information (e.g. what you were trying to achieve)
2020
* Simplest possible steps to reproduce
2121
* Anything that might be relevant in your opinion, such as:
@@ -31,7 +31,7 @@ Please be educated, civilized and constructive. Disrespective posts against [Git
3131
```
3232
Arduino IDE version: 1.8.19
3333
ESP32_DEV board
34-
ESP32 core v2.0.5
34+
ESP32 core v2.0.6
3535
OS: Ubuntu 20.04 LTS
3636
Linux xy-Inspiron-3593 5.15.0-56-generic #62~20.04.1-Ubuntu SMP Tue Nov 22 21:24:20 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3737

changelog.md

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
## Table of contents
1616

1717
* [Changelog](#changelog)
18+
* [Releases v1.6.4](#releases-v164)
1819
* [Releases v1.6.3](#releases-v163)
1920
* [Releases v1.6.2](#releases-v162)
2021

@@ -25,6 +26,10 @@
2526

2627
## Changelog
2728

29+
#### Releases v1.6.4
30+
31+
1. Remove unused variable to avoid compiler warning and error
32+
2833
#### Releases v1.6.3
2934

3035
1. Add `Async_WebSocketsServer`, `Async_HttpBasicAuth` and `MQTT` examples

examples/AsyncWebServer_SendChunked/AsyncWebServer_SendChunked.ino

-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ String out;
135135
void handleRoot(AsyncWebServerRequest *request)
136136
{
137137
out.reserve(STRING_SIZE);
138-
char temp[70];
139138

140139
// clear the String to start over
141140
out = String();

examples/Async_AdvancedWebServer_SendChunked/Async_AdvancedWebServer_SendChunked.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
*****************************************************************************************************************************/
4040

4141
#if !( defined(ESP32) )
42-
#error This code is designed for (ESP32 + W5500) to run on ESP32 platform! Please check your Tools->Board setting.
42+
#error This code is designed for (ESP32 + W5500) to run on ESP32 platform! Please check your Tools->Board setting.
4343
#endif
4444

4545
#include <Arduino.h>
@@ -186,7 +186,7 @@ void drawGraph(AsyncWebServerRequest *request)
186186
AWS_LOGDEBUG1("Total length to send in chunks =", out.length());
187187

188188
AsyncWebServerResponse *response = request->beginChunkedResponse("image/svg+xml", [](uint8_t *buffer, size_t maxLen,
189-
size_t filledLength) -> size_t
189+
size_t filledLength) -> size_t
190190
{
191191
size_t len = min(maxLen, out.length() - filledLength);
192192
memcpy(buffer, out.c_str() + filledLength, len);

examples/MQTTClient_Auth/defines.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/****************************************************************************************************************************
22
defines.h
33
4-
For RP2040W with CYW43439 WiFi
4+
For W5500 LwIP Ethernet in ESP32 (ESP32 + W5500)
55
6-
AsyncWebServer_RP2040W is a library for the RP2040W with CYW43439 WiFi
6+
AsyncWebServer_ESP32_W5500 is a library for the LwIP Ethernet W5500 in ESP32 to run AsyncWebServer
77
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
9-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_RP2040W
9+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500
1010
Licensed under GPLv3 license
1111
*****************************************************************************************************************************/
1212

examples/MQTTClient_Basic/defines.h

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,15 @@
11
/****************************************************************************************************************************
22
defines.h
33
4-
For RP2040W with CYW43439 WiFi
4+
For W5500 LwIP Ethernet in ESP32 (ESP32 + W5500)
55
6-
AsyncWebServer_RP2040W is a library for the RP2040W with CYW43439 WiFi
6+
AsyncWebServer_ESP32_W5500 is a library for the LwIP Ethernet W5500 in ESP32 to run AsyncWebServer
77
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
9-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_RP2040W
9+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500
1010
Licensed under GPLv3 license
1111
*****************************************************************************************************************************/
1212

13-
1413
#ifndef defines_h
1514
#define defines_h
1615

examples/MQTT_ThingStream/defines.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/****************************************************************************************************************************
22
defines.h
33
4-
For RP2040W with CYW43439 WiFi
4+
For W5500 LwIP Ethernet in ESP32 (ESP32 + W5500)
55
6-
AsyncWebServer_RP2040W is a library for the RP2040W with CYW43439 WiFi
6+
AsyncWebServer_ESP32_W5500 is a library for the LwIP Ethernet W5500 in ESP32 to run AsyncWebServer
77
88
Based on and modified from ESPAsyncWebServer (https://github.com/me-no-dev/ESPAsyncWebServer)
9-
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_RP2040W
9+
Built by Khoi Hoang https://github.com/khoih-prog/AsyncWebServer_ESP32_W5500
1010
Licensed under GPLv3 license
1111
*****************************************************************************************************************************/
1212

library.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name":"AsyncWebServer_ESP32_W5500",
3-
"version": "1.6.3",
3+
"version": "1.6.4",
44
"description":"Asynchronous HTTP and WebSocket Server Library for (ESP32 + LwIP W5500). Now supporting using CString to save heap to send very large data and with examples to demo how to use beginChunkedResponse() to send large html in chunks",
55
"keywords":"http, async, async-webserver, websocket, webserver, esp32, w5500, lwip",
66
"authors":

library.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=AsyncWebServer_ESP32_W5500
2-
version=1.6.3
2+
version=1.6.4
33
author=Hristo Gochkov,Khoi Hoang
44
maintainer=Khoi Hoang <khoih.prog@gmail.com>
55
license=GPLv3

pics/W5500.png

209 KB
Loading

pics/W5500_small.png

96 KB
Loading

src/AsyncEventSource.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#include "Arduino.h"

src/AsyncEventSource.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef ASYNCEVENTSOURCE_H_

src/AsyncJson.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233
/*
3334
Async Response to use with ArduinoJson and AsyncWebServer

src/AsyncWebServer_ESP32_W5500.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#include "AsyncWebServer_ESP32_W5500.h"

src/AsyncWebServer_ESP32_W5500.h

+6-5
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef _AsyncWebServer_ESP32_W5500_H_
@@ -54,21 +55,21 @@
5455
#warning Using code for ESP32 core v2.0.0+ in AsyncWebServer_ESP32_W5500.h
5556
#endif
5657

57-
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION "AsyncWebServer_ESP32_W5500 v1.6.3 for core v2.0.0+"
58+
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION "AsyncWebServer_ESP32_W5500 v1.6.4 for core v2.0.0+"
5859
#else
5960

6061
#if (_ASYNC_WEBSERVER_LOGLEVEL_ > 3 )
6162
#warning Using code for ESP32 core v1.0.6- in AsyncWebServer_ESP32_W5500.h
6263
#endif
6364

64-
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION "AsyncWebServer_ESP32_W5500 v1.6.3 for core v1.0.6-"
65+
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION "AsyncWebServer_ESP32_W5500 v1.6.4 for core v1.0.6-"
6566
#endif
6667

6768
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION_MAJOR 1
6869
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION_MINOR 6
69-
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION_PATCH 3
70+
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION_PATCH 4
7071

71-
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION_INT 1006003
72+
#define ASYNC_WEBSERVER_ESP32_W5500_VERSION_INT 1006004
7273

7374
/////////////////////////////////////////////////
7475

src/AsyncWebServer_ESP32_W5500_Debug.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#pragma once

src/AsyncWebSocket.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#include "Arduino.h"

src/AsyncWebSocket.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef ASYNCWEBSOCKET_H_

src/AsyncWebSynchronization.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef ASYNCWEBSYNCHRONIZATION_H_

src/ESP32_W5500_SPIFFSEditor.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#include "ESP32_W5500_SPIFFSEditor.h"

src/ESP32_W5500_SPIFFSEditor.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef ESP32_W5500_SPIFFSEditor_H_

src/StringArray.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef STRINGARRAY_H_

src/WebAuthentication.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#include "WebAuthentication.h"

src/WebAuthentication.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef WEB_AUTHENTICATION_H_

src/WebHandlerImpl.h

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#ifndef ASYNCWEBSERVERHANDLERIMPL_H_

src/WebHandlers.cpp

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,13 @@
2222
You should have received a copy of the GNU Lesser General Public License along with this library;
2323
if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
2424
25-
Version: 1.6.3
25+
Version: 1.6.4
2626
2727
Version Modified By Date Comments
2828
------- ----------- ---------- -----------
2929
1.6.2 K Hoang 30/11/2022 Initial porting for ENC28J60 + ESP32. Sync with AsyncWebServer_WT32_ETH01 v1.6.2
3030
1.6.3 K Hoang 05/12/2022 Add Async_WebSocketsServer, MQTT examples
31+
1.6.4 K Hoang 23/12/2022 Remove unused variable to avoid compiler warning and error
3132
*****************************************************************************************************************************/
3233

3334
#include "AsyncWebServer_ESP32_W5500.h"

0 commit comments

Comments
 (0)