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

Releases: khoih-prog/WiFiWebServer

Version v1.0.5 to fix bug

21 Jul 20:34
f124b69
Compare
Choose a tag to compare

New in v1.0.5

  1. Fix bug not closing client and releasing socket exposed in NINA Firmware v1.4.0.
  2. Enhance examples.

Version v1.0.4 to add WiFi101, MKR1000 and custom WiFi Libraries

24 Apr 03:18
52feb0c
Compare
Choose a tag to compare

New in v1.0.4

  1. Add support to boards using WiFi101 built-in or shield. For example MKR1000, Teensy, Mega, etc..
  2. Support any future custom WiFi library that meets the no-compiling-error requirements.

Version v1.0.3 to add support to nRF52 boards

23 Apr 03:09
84a2a92
Compare
Choose a tag to compare

New in v1.0.3

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

18 Apr 06:12
bd24cc5
Compare
Choose a tag to compare

New Version v1.0.2

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

28 Mar 18:09
fbd2800
Compare
Choose a tag to compare

New Version v1.0.1

  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

26 Mar 03:54
4a70df3
Compare
Choose a tag to compare

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

  1. SAM DUE
  2. SAMD21 (ZERO, MKR, NANO_33_IOT, M0, M0 Pro, AdaFruit CIRCUITPLAYGROUND_EXPRESS, etc.)
  3. SAMD51 (Adafruit M4 : Metro, Grand Central, ItsyBitsy, Feather Express, Trellis, Metro AirLift lite, MONSTER M4SK Express, Hallowing Express, etc. )
  4. Teensy (4.0, 3.6, 3.5, 3,2, 3.1, 3.0, LC)
  5. STM32F1, STM32F2, STM32F4, STM32F7

The library supports

  1. WiFi Client, STA and AP mode
  2. TCP Server and Client
  3. UDP Server and Client
  4. HTTP Server and Client
  5. HTTP GET and POST requests, provides argument parsing, handles one client at a time.