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

Commit

Permalink
v1.7.2 add support to Adafruit Airlift M4 boards
Browse files Browse the repository at this point in the history
### New in v1.7.2

1. Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4. Thanks to [Gerard Moorcroft](https://github.com/gmstuff) to report issue [**WiFi Hangs when attempting to start WiFi (Adafruit M4 Express Airlift Lite board)**](khoih-prog/MySQL_MariaDB_Generic#2) leading to this new version.
2. Add WIFININA_GENERIC_VERSION
  • Loading branch information
khoih-prog authored Nov 5, 2020
1 parent 2f6b467 commit d17fc07
Show file tree
Hide file tree
Showing 74 changed files with 211 additions and 107 deletions.
20 changes: 10 additions & 10 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
## Contributing to Blynk_WiFiManager
## Contributing to WiFiNINA_Generic

### Reporting Bugs

Please report bugs in Blynk_WiFiManager if you find them.
Please report bugs in WiFiNINA_Generic if you find them.

However, before reporting a bug please check through the following:

* [Existing Open Issues](https://github.com/khoih-prog/Blynk_WM/issues) - someone might have already encountered this.
* [Existing Open Issues](https://github.com/khoih-prog/WiFiNINA_Generic/issues) - someone might have already encountered this.

If you don't find anything, please [open a new issue](https://github.com/khoih-prog/Blynk_WM/issues/new).
If you don't find anything, please [open a new issue](https://github.com/khoih-prog/WiFiNINA_Generic/issues/new).

### How to submit a bug report

Please ensure to specify the following:

* Arduino IDE version (e.g. 1.8.10) or Platform.io version
* `ESP8266` or `ESP32` Core Version (e.g. ESP8266 core v2.6.3 or ESP32 v1.0.4)
* `Arduino, Adafruit or Seeeduino` SAMD Core Version (e.g. Arduino SAMD core v1.8.9 or Adafruit SAMD core v1.6.3)
* Contextual information (e.g. what you were trying to achieve)
* Simplest possible steps to reproduce
* Anything that might be relevant in your opinion, such as:
Expand All @@ -26,10 +26,10 @@ Please ensure to specify the following:
### Example

```
Arduino IDE version: 1.8.10
ESP8266 Core Version 2.6.3
OS: Ubuntu 16.04 LTS
Linux Inspiron 4.4.0-170-generic #199-Ubuntu SMP Thu Nov 14 01:45:04 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux
Arduino IDE version: 1.8.13
Arduino SAMD core v1.8.9
OS: Ubuntu 20.04 LTS
Linux xy-Inspiron-3593 5.4.0-51-generic #56-Ubuntu SMP Mon Oct 5 14:28:49 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
Context:
The board couldn't autoreconnect to Local Blynk Server after router power recycling.
Expand All @@ -44,7 +44,7 @@ Steps to reproduce:
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/Blynk_WM/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/WiFiNINA_Generic/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
### Sending Pull Requests
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,11 @@ With this library you can instantiate Servers, Clients and send/receive UDP pack

---

### New in v1.7.2

1. Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4. Thanks to [Gerard Moorcroft](https://github.com/gmstuff) to report issue [**WiFi Hangs when attempting to start WiFi (Adafruit M4 Express Airlift Lite board)**](https://github.com/khoih-prog/MySQL_MariaDB_Generic/issues/2) leading to this new version.
2. Add WIFININA_GENERIC_VERSION

### New in v1.7.1

1. Sync with [Arduino WiFiNINA Library v1.7.1](https://github.com/arduino-libraries/WiFiNINA/releases/tag/1.7.1). Using the latest WiFiNINA FW v1.4.1 in [WiFi101-FirmwareUpdater-Plugin v0.10.12](https://github.com/arduino/WiFi101-FirmwareUpdater-Plugin/releases/tag/v0.10.12)
Expand Down Expand Up @@ -104,7 +109,7 @@ To install:

1. Install [VS Code](https://code.visualstudio.com/)
2. Install [PlatformIO](https://platformio.org/platformio-ide)
3. Install [**WiFiNINA_Generic** library](https://platformio.org/lib/show/7204/WiFiNINA_Generic) by using [Library Manager](https://platformio.org/lib/show/7204/WiFiNINA_Generic/installation). Search for WiFiNINA_Generic in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
3. Install [**WiFiNINA_Generic** library](https://platformio.org/lib/show/11284/WiFiNINA_Generic) by using [Library Manager](https://platformio.org/lib/show/11284/WiFiNINA_Generic/installation). Search for WiFiNINA_Generic in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
4. Use included [platformio.ini](platformio/platformio.ini) file from examples to ensure that all dependent libraries will installed automatically. Please visit documentation for the other options and examples at [Project Configuration File](https://docs.platformio.org/page/projectconf.html)

---
Expand Down Expand Up @@ -394,6 +399,7 @@ void setup()
while (!Serial);
Serial.println("\nStart WiFiWebServer on " + String(BOARD_NAME));
Serial.println("Version " + String(WIFININA_GENERIC_VERSION));
// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE)
Expand Down Expand Up @@ -811,6 +817,7 @@ The following are screen shot and debug terminal output when running example [Ad

```
Starting AdvancedServer on SAMD_NANO_33_IOT
Version 1.7.2
[NN] ===============================
[NN]
Used/default SPI pinout:
Expand Down Expand Up @@ -982,6 +989,11 @@ Sometimes, the library will only work if you update the `WiFiNINA module/shield`

## Releases

### New in v1.7.2

1. Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4. Thanks to [Gerard Moorcroft](https://github.com/gmstuff) to report issue [**WiFi Hangs when attempting to start WiFi (Adafruit M4 Express Airlift Lite board)**](https://github.com/khoih-prog/MySQL_MariaDB_Generic/issues/2) leading to this new version.
2. Add WIFININA_GENERIC_VERSION

### New in v1.7.1

1. Sync with [Arduino WiFiNINA Library v1.7.1](https://github.com/arduino-libraries/WiFiNINA/releases/tag/1.7.1). Using the latest WiFiNINA FW v1.4.1 in [WiFi101-FirmwareUpdater-Plugin v0.10.12](https://github.com/arduino/WiFi101-FirmwareUpdater-Plugin/releases/tag/v0.10.12)
Expand Down Expand Up @@ -1039,7 +1051,7 @@ Again with credits of [Miguel Alexandre Wisintainer](https://github.com/tcpipchi
### DONE

1. Add support to **Adafruit SAMD21 (Itsy-Bitsy M0, Metro M0, Feather M0 Express, etc.)**.
2. Add support to **Adafruit SAMD51 (Itsy-Bitsy M4, Metro M4, Grand Central M4, Feather M4 Express, etc.)**.
2. Add support to **Adafruit SAMD51 (Itsy-Bitsy M4, Metro M4, Grand Central M4, Feather M4 Express, METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4, etc.)**.
3. Add support to **Adafruit nRF52 ( Feather nRF52832, nRF52840 Express, BlueFruit Sense, Itsy-Bitsy nRF52840 Express, Metro nRF52840 Express, NINA_B302_ublox, NINA_B112_ublox, etc.)**.
4. Add support to SAM DUE.
5. Add support to Teensy.
Expand All @@ -1057,11 +1069,13 @@ Again with credits of [Miguel Alexandre Wisintainer](https://github.com/tcpipchi
1. Based on and modified from from [Arduino WiFiNINA library](http://www.arduino.cc/en/Reference/WiFiNINA).Thanks to the great works of these [WiFiNINA Library's Contributors](https://github.com/arduino-libraries/WiFiNINA/graphs/contributors)
2. Thanks to good work of [Miguel Alexandre Wisintainer](https://github.com/tcpipchip) for initiating, inspriring, working with, developing, debugging and testing. Without that, support to nRF52, especially **NINA_B302_ublox running as nRF52840 and NINA_B112_ublox running as nRF52832**, has never been started and finished. See [u-blox nina b](https://github.com/khoih-prog/WiFiNINA_Generic/issues/1)
3. Thanks to [AppsByDavideV](https://github.com/AppsByDavideV) to report [WiFiStorage Bug](https://github.com/khoih-prog/WiFiNINA_Generic/issues/4)
4. Thanks to [Gerard Moorcroft](https://github.com/gmstuff) to report issue [**WiFi Hangs when attempting to start WiFi (Adafruit M4 Express Airlift Lite board)**](https://github.com/khoih-prog/MySQL_MariaDB_Generic/issues/2) leading to version v1.7.2 to add support to Adafruit METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4.

<table>
<tr>
<td align="center"><a href="https://github.com/tcpipchip"><img src="https://github.com/tcpipchip.png" width="100px;" alt="tcpipchip"/><br /><sub><b>⭐️ Miguel Wisintainer</b></sub></a><br /></td>
<td align="center"><a href="https://github.com/AppsByDavideV"><img src="https://github.com/AppsByDavideV.png" width="100px;" alt="AppsByDavideV"/><br /><sub><b>AppsByDavideV</b></sub></a><br /></td>
<td align="center"><a href="https://github.com/gmstuff"><img src="https://github.com/gmstuff.png" width="100px;" alt="gmstuff"/><br /><sub><b>Gerard Moorcroft</b></sub></a><br /></td>
</tr>
</table>

Expand Down
6 changes: 4 additions & 2 deletions examples/AP_SimpleWebServer/AP_SimpleWebServer.ino
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -56,7 +56,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#include "defines.h"
Expand Down Expand Up @@ -84,6 +85,7 @@ void setup()
while (!Serial);

Serial.println("\nStart AP_SimpleWebServer on " + String(BOARD_NAME));
Serial.println("Version " + String(WIFININA_GENERIC_VERSION));

pinMode(led, OUTPUT); // set the LED pin mode

Expand Down
5 changes: 3 additions & 2 deletions examples/AP_SimpleWebServer/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -40,7 +40,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#ifndef defines_h
Expand Down
6 changes: 4 additions & 2 deletions examples/ConnectNoEncryption/ConnectNoEncryption.ino
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -49,7 +49,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#include "defines.h"
Expand All @@ -69,6 +70,7 @@ void setup()
while (!Serial);

Serial.println("\nStart ConnectNoEncryption on " + String(BOARD_NAME));
Serial.println("Version " + String(WIFININA_GENERIC_VERSION));

// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE)
Expand Down
5 changes: 3 additions & 2 deletions examples/ConnectNoEncryption/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -40,7 +40,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#ifndef defines_h
Expand Down
6 changes: 4 additions & 2 deletions examples/ConnectWithWEP/ConnectWithWEP.ino
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -58,7 +58,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#include "defines.h"
Expand All @@ -82,6 +83,7 @@ void setup()
while (!Serial);

Serial.println("\nStart ConnectWithWEP on " + String(BOARD_NAME));
Serial.println("Version " + String(WIFININA_GENERIC_VERSION));

// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE)
Expand Down
5 changes: 3 additions & 2 deletions examples/ConnectWithWEP/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -40,7 +40,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#ifndef defines_h
Expand Down
6 changes: 4 additions & 2 deletions examples/ConnectWithWPA/ConnectWithWPA.ino
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -48,7 +48,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/
#include "defines.h"
#include "arduino_secrets.h"
Expand All @@ -69,6 +70,7 @@ void setup()
while (!Serial);

Serial.println("\nStart ConnectWithWPA on " + String(BOARD_NAME));
Serial.println("Version " + String(WIFININA_GENERIC_VERSION));

// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE)
Expand Down
5 changes: 3 additions & 2 deletions examples/ConnectWithWPA/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -40,7 +40,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#ifndef defines_h
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -45,7 +45,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/
#include "defines.h"
#include "arduino_secrets.h"
Expand All @@ -67,6 +68,7 @@ void setup()
while (!Serial);

Serial.println("\nStart ConnectWithWPA2Enterprise on " + String(BOARD_NAME));
Serial.println("Version " + String(WIFININA_GENERIC_VERSION));

// check for the WiFi module:
if (WiFi.status() == WL_NO_MODULE)
Expand Down
5 changes: 3 additions & 2 deletions examples/ConnectWithWPA2Enterprise/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
Version: 1.7.1
Version: 1.7.2
Version Modified By Date Comments
------- ----------- ---------- -----------
Expand All @@ -40,7 +40,8 @@
1.6.1 K Hoang 24/07/2020 Add support to all STM32F/L/H/G/WB/MP1 and Seeeduino SAMD21/SAMD51 boards
1.6.2 K Hoang 28/07/2020 Fix WiFiStorage bug from v1.6.0
1.7.0 K Hoang 06/08/2020 Sync with Arduino WiFiNINA Library v1.7.0 : Add downloadOTA() and verify length/CRC
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.1 K Hoang 27/08/2020 Sync with Arduino WiFiNINA Library v1.7.1 : new Firmware 1.4.1
1.7.2 K Hoang 05/11/2020 Add support to Adafruit Airlift M4 boards: METRO_M4_AIRLIFT_LITE, PYBADGE_AIRLIFT_M4
*****************************************************************************************************************************/

#ifndef defines_h
Expand Down
Loading

0 comments on commit d17fc07

Please sign in to comment.