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

Commit

Permalink
v1.3.0
Browse files Browse the repository at this point in the history
### Releases v1.3.0

1. Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples. Check [**streamFile and serveStatic for ESP8266/ESP32 boards #22**](#22)
2. Add examples [**serveStatic**](https://github.com/khoih-prog/EthernetWebServer/tree/master/examples/serveStatic) and [**serveStaticLoadFile**](https://github.com/khoih-prog/EthernetWebServer/tree/master/examples/serveStaticLoadFile) to use new `serveStatic()`feature
3. Add examples [**ESP32_FS_EthernetWebServer**](https://github.com/khoih-prog/EthernetWebServer/tree/master/examples/ESP32_FS_EthernetWebServer) and [**FS_EthernetWebServer**](https://github.com/khoih-prog/EthernetWebServer/tree/master/examples/FS_EthernetWebServer) to use new `serveStatic()`feature
  • Loading branch information
khoih-prog authored Jan 28, 2021
1 parent 3fb93a1 commit dde84fb
Show file tree
Hide file tree
Showing 31 changed files with 579 additions and 255 deletions.
232 changes: 210 additions & 22 deletions README.md

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ sendHeader KEYWORD2
sendContent KEYWORD2
urlDecode KEYWORD2
streamFile KEYWORD2
serveStatic KEYWORD2

#######################
# Parsing-impl
Expand Down
6 changes: 3 additions & 3 deletions library.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "EthernetWebServer",
"version": "1.2.1",
"keywords": "WebServer, Ethernet, Ethernet2, Ethernet3, EthernetLarge, EtnernetENC, UIPEthernet, NativeEthernet, Arduino, Teensy, SAMD21, SAMD51, SAM DUE, AVR, Mega, nRF52, ESP32, ESP8266, W5100, W5200, W5500, ENC28J60, HTTP-Client, WebSocket-Client, server, client, websocket",
"description": "Simple Ethernet WebServer, HTTP Client and WebSocket Client library for AVR, Teensy, SAM DUE, SAMD21, SAMD51, ESP, nRF52, ESP32, ESP8266 boards using Ethernet shields W5100, W5200, W5500, ENC28J60 or Teensy 4.1 NativeEthernet",
"version": "1.3.0",
"keywords": "WebServer, Ethernet, Ethernet2, Ethernet3, EthernetLarge, EtnernetENC, UIPEthernet, NativeEthernet, Arduino, Teensy, SAMD21, SAMD51, SAM DUE, AVR, Mega, nRF52, ESP32, ESP8266, W5100, W5200, W5500, ENC28J60, HTTP-Client, WebSocket-Client, server, client, websocket, LittleFS, SPIFFS",
"description": "Simple Ethernet WebServer, HTTP Client and WebSocket Client library for AVR, Teensy, SAM DUE, SAMD21, SAMD51, ESP, nRF52, ESP32, ESP8266 boards using Ethernet shields W5100, W5200, W5500, ENC28J60 or Teensy 4.1 NativeEthernet. The WebServer supports HTTP GET and POST requests, provides argument parsing, handles one client at a time. It now provides HTTP Client and WebSocket Client. It supports Arduino boards (Atmel AVR-s, SAM DUE, Atmel SAM3X8E ARM Cortex-M3, SAMD21, SAMD51, ESP8266, ESP32, Adafruit nRF52, Teensy boards, Realtek Ameba(RTL8195A,RTL8710)) using Wiznet W5x00 or ENC28J60 network shields. It now supports WebServer serving from LittleFS/SPIFFS for ESP8266/ESP32.",
"authors":
{
"name": "Khoi Hoang",
Expand Down
6 changes: 3 additions & 3 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name=EthernetWebServer
version=1.2.1
version=1.3.0
author=Khoi Hoang
license=MIT
maintainer=Khoi Hoang <[email protected]>
sentence=Simple Ethernet WebServer, HTTP Client and WebSocket Client library for AVR, Teensy, SAM DUE, SAMD21, SAMD51, ESP, nRF52, ESP32, ESP8266 boards using Ethernet shields W5100, W5200, W5500, ENC28J60 or Teensy 4.1 NativeEthernet
paragraph=The WebServer supports HTTP GET and POST requests, provides argument parsing, handles one client at a time. It now provides HTTP Client and WebSocket Client. It supports Arduino boards (Atmel AVR-s, SAM DUE, Atmel SAM3X8E ARM Cortex-M3, SAMD21, SAMD51, ESP8266, ESP32, Adafruit nRF52, Teensy boards, Realtek Ameba(RTL8195A,RTL8710)) using Wiznet W5x00 or ENC28J60 network shields.
sentence=Simple Ethernet WebServer, HTTP Client and WebSocket Client library for AVR, Teensy, SAM DUE, SAMD21, SAMD51, nRF52, ESP32, ESP8266 boards using Ethernet shields W5100, W5200, W5500, ENC28J60 or Teensy 4.1 NativeEthernet
paragraph=The WebServer supports HTTP GET and POST requests, provides argument parsing, handles one client at a time. It now provides HTTP Client and WebSocket Client. It supports Arduino boards (Atmel AVR-s, SAM DUE, Atmel SAM3X8E ARM Cortex-M3, SAMD21, SAMD51, ESP8266, ESP32, Adafruit nRF52, Teensy boards, Realtek Ameba(RTL8195A,RTL8710)) using Wiznet W5x00 or ENC28J60 network shields. It now supports WebServer serving from LittleFS/SPIFFS for ESP8266/ESP32.
category=Communication
url=https://github.com/khoih-prog/EthernetWebServer
architectures=*
Expand Down
Binary file added pics/ESP32_FS_EthernetWebServer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pics/FS_EthernetWebServer.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pics/serveStatic.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion src/EthernetHttpClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/EthernetWebServer-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once
Expand Down
5 changes: 3 additions & 2 deletions src/EthernetWebServer.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,11 +34,12 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once

#define ETHERNET_WEBSERVER_VERSION "EthernetWebServer v1.2.1"
#define ETHERNET_WEBSERVER_VERSION "EthernetWebServer v1.3.0"

#define USE_NEW_WEBSERVER_VERSION true

Expand Down
3 changes: 2 additions & 1 deletion src/EthernetWrapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/
#ifndef EthernetWrapper_h
#define EthernetWrapper_h
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_HttpClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// Class to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_HttpClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// Class to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_URLEncoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_URLEncoder.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// Library to simplify HTTP fetching on Arduino
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_WebSocketClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// (c) Copyright Arduino. 2016
Expand Down
3 changes: 2 additions & 1 deletion src/Ethernet_HTTPClient/Ethernet_WebSocketClient.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

// (c) Copyright Arduino. 2016
Expand Down
3 changes: 2 additions & 1 deletion src/Parsing-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/Debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once
Expand Down
28 changes: 24 additions & 4 deletions src/detail/ESP_RequestHandlersImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,35 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.0.0
Version: 1.3.0
Original author:
@file RequestHandlersImpl.h
@author Khoi Hoang
@file Esp8266WebServer.h
@author Ivan Grokhotkov
Version Modified By Date Comments
------- ----------- ---------- -----------
1.0.0 S Azari 25/01/2021 Initial coding, inheriting EthernetWebServer class and porting ESP8266 code
1.0.0 K Hoang 13/02/2020 Initial coding for Arduino Mega, Teensy, etc to support Ethernetx libraries
1.0.1 K Hoang 20/02/2020 Add support to lambda functions
1.0.2 K Hoang 20/02/2020 Add support to UIPEthernet library for ENC28J60
1.0.3 K Hoang 23/02/2020 Add support to SAM DUE / SAMD21 boards
1.0.4 K Hoang 16/04/2020 Add support to SAMD51 boards
1.0.5 K Hoang 24/04/2020 Add support to nRF52 boards, such as AdaFruit Feather nRF52832, nRF52840 Express, BlueFruit Sense,
Itsy-Bitsy nRF52840 Express, Metro nRF52840 Express, NINA_B302_ublox, etc.
More Custom Ethernet libraries supported such as Ethernet2, Ethernet3, EthernetLarge
1.0.6 K Hoang 27/04/2020 Add W5x00 support to ESP32/ESP8266 boards
1.0.7 K Hoang 30/04/2020 Add ENC28J60 support to ESP32/ESP8266 boards
1.0.8 K Hoang 12/05/2020 Fix W5x00 support for ESP8266 boards.
1.0.9 K Hoang 15/05/2020 Add EthernetWrapper.h for easier W5x00 support as well as more Ethernet libs in the future.
1.0.10 K Hoang 21/07/2020 Fix bug not closing client and releasing socket.
1.0.11 K Hoang 25/07/2020 Add support to Seeeduino SAMD21/SAMD51 boards. Restructure examples.
1.0.12 K Hoang 15/09/2020 Add support to new EthernetENC library for ENC28J60. Add debug feature.
1.0.13 K Hoang 24/09/2020 Restore support to PROGMEM-related commands, such as sendContent_P() and send_P()
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 S Azari 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once
Expand Down
3 changes: 2 additions & 1 deletion src/detail/RequestHandler.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once
Expand Down
5 changes: 3 additions & 2 deletions src/detail/RequestHandlersImpl.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
Based on and modified from ESP8266 https://github.com/esp8266/Arduino/releases
Built by Khoi Hoang https://github.com/khoih-prog/EthernetWebServer
Licensed under MIT license
Version: 1.2.1
Version: 1.3.0
Original author:
@file Esp8266WebServer.h
Expand All @@ -34,6 +34,7 @@
1.1.0 K Hoang 17/11/2020 Add basic HTTP and WebSockets Client by merging ArduinoHttpClient
1.2.0 K Hoang 04/12/2020 Add support to NativeEthernet Library for Teensy 4.1
1.2.1 K Hoang 26/12/2020 Suppress all possible compiler warnings
1.3.0 K Hoang 27/01/2021 Add WebServer feature to serve from LittleFS/SPIFFS for ESP32/ESP8266 with examples
*****************************************************************************************************************************/

#pragma once
Expand Down Expand Up @@ -189,5 +190,5 @@ class StaticRequestHandler : public RequestHandler
};

#else
#include "ESP_RequestHandlersImpl.h"
#include "ESP_RequestHandlersImpl.h"
#endif
Loading

0 comments on commit dde84fb

Please sign in to comment.