This repository was archived by the owner on Feb 4, 2023. It is now read-only.
Releases: khoih-prog/WiFiWebServer
Releases · khoih-prog/WiFiWebServer
Version v1.0.5 to fix bug
New in v1.0.5
- Fix bug not closing client and releasing socket exposed in NINA Firmware v1.4.0.
- Enhance examples.
Version v1.0.4 to add WiFi101, MKR1000 and custom WiFi Libraries
New in v1.0.4
- Add support to boards using WiFi101 built-in or shield. For example MKR1000, Teensy, Mega, etc..
- Support any future custom WiFi library that meets the no-compiling-error requirements.
Version v1.0.3 to add support to nRF52 boards
New in v1.0.3
- Add support to nRF52 boards, such as AdaFruit Feather nRF52832, nRF52840 Express, BlueFruit Sense, Itsy-Bitsy nRF52840 Express, Metro nRF52840 Express, etc
Version v1.0.2 to add SAMD51 and SAM DUE support
New Version v1.0.2
- Add support to SAM51 (Itsy-Bitsy M4, Metro M4, Grand Central M4, Feather M4 Express, etc.) and SAM DUE.
Release v1.0.1 to provide support for many more boards
New Version v1.0.1
- Use new
WiFiNINA_Generic library
to provide support to many more boards running WiFiNINA.
The original WiFiNINA library only supports Nano-33 IoT, Arduino MKR WiFi 1010, Arduino MKR VIDOR 4000 and Arduino UNO WiFi Rev.2.
Initial Release v1.0.0
Initial Version v1.0.0
This is simple yet complete WebServer library for AVR, Teensy, SAM DUE, SAMD, STM32, etc.
boards running WiFi modules/shields (WiFiNINA U-Blox W101, W102, etc.). The functions are similar and compatible to ESP8266/ESP32 WebServer libraries to make life much easier to port sketches from ESP8266/ESP32.
The library currently supports these boards
- SAM DUE
- SAMD21 (ZERO, MKR, NANO_33_IOT, M0, M0 Pro, AdaFruit CIRCUITPLAYGROUND_EXPRESS, etc.)
- SAMD51 (Adafruit M4 : Metro, Grand Central, ItsyBitsy, Feather Express, Trellis, Metro AirLift lite, MONSTER M4SK Express, Hallowing Express, etc. )
- Teensy (4.0, 3.6, 3.5, 3,2, 3.1, 3.0, LC)
- STM32F1, STM32F2, STM32F4, STM32F7
The library supports
- WiFi Client, STA and AP mode
- TCP Server and Client
- UDP Server and Client
- HTTP Server and Client
- HTTP GET and POST requests, provides argument parsing, handles one client at a time.