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

Releases: khoih-prog/EthernetWebServer

Version v1.0.5 to add nRF52 board support and custom Ethernet libraries

24 Apr 05:48
d7c2d16
Compare
Choose a tag to compare

New in v1.0.5

  1. 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.
  2. 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

16 Apr 04:45
2699262
Compare
Choose a tag to compare

New in v1.0.4

  1. 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

24 Feb 01:55
59d192e
Compare
Choose a tag to compare

Version v1.0.3

  1. 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

20 Feb 22:20
32b57bd
Compare
Choose a tag to compare

Version v1.0.2

  1. 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))
  2. Support Wiznet W5x00 or ENC28J60 EThernet shields by using UIPEthernet library besides standard Ethernet library.

Version v1.0.1

18 Feb 04:35
e0b8e6f
Compare
Choose a tag to compare

Version v1.0.1

  1. Add support to Server's lambda function calls with dependency on Functional-VLPP library

Initial Release v1.0.0

17 Feb 19:57
4dd75e7
Compare
Choose a tag to compare

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

  1. HTTP Server and Client
  2. HTTP GET and POST requests, provides argument parsing, handles one client at a time.