This repository has been archived by the owner on Feb 4, 2023. It is now read-only.
Releases: khoih-prog/EthernetWebServer
Releases · khoih-prog/EthernetWebServer
Version v1.0.5 to add nRF52 board support and custom Ethernet libraries
New in v1.0.5
- Add support to nRF52 boards, such as AdaFruit Feather nRF52832, nRF52840 Express, BlueFruit Sense, Itsy-Bitsy nRF52840 Express, Metro nRF52840 Express, NINA_B30_ublox, etc.
- Support any future custom Ethernet library that meets the no-compiling-error requirements. Currently Ethernet2, EThernet3, EthernetLarge libraries are supported. Ethernet_Shield_W5200, EtherCard, EtherSia libraries are not supported.
Version v1.0.4 to add SAMD51 support
New in v1.0.4
- Add support to SAM51 (Itsy-Bitsy M4, Metro M4, Grand Central M4, Feather M4 Express, etc.).
Version v1.0.3 to support SAM and SAMD boards
Version v1.0.3
- From v1.0.3+, the library supports many more Arduino boards ( SAM DUE, SAMD: ZERO, MKR, NANO_33_IOT, M0, M0 Pro, AdaFruit CIRCUITPLAYGROUND_EXPRESS, etc.)
Version v1.0.2 to support ENC28J60 and UIPEThernet library
Version v1.0.2
- From v1.0.2+, the library supports many more Arduino boards (Atmel AVR-s, Atmel SAM3X8E ARM Cortex-M3, STM32F series, ESP8266, Intel ARC32(Genuino101), Nordic nRF51(RFduino), Teensy boards, Realtek Ameba(RTL8195A,RTL8710))
- Support Wiznet W5x00 or ENC28J60 EThernet shields by using UIPEthernet library besides standard Ethernet library.
Version v1.0.1
Version v1.0.1
- Add support to Server's lambda function calls with dependency on
Functional-VLPP library
Initial Release v1.0.0
Version v1.0.0
This is simple yet complete WebServer library for AVR, Teensy, etc. boards running Ethernet shields. The functions are similar and compatible to ESP8266/ESP32 WebServer libraries to make life much easier to port sketches from ESP8266/ESP32.
The library supports
- HTTP Server and Client
- HTTP GET and POST requests, provides argument parsing, handles one client at a time.