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

Commit

Permalink
v1.0.4
Browse files Browse the repository at this point in the history
### New Releases v1.0.4

1. Add support to ***Arduino UNO WiFi R2***.
  • Loading branch information
khoih-prog authored May 14, 2020
1 parent 718bf2b commit 6e75606
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

### New Releases v1.0.4

1. Add support to ***Arduino UNO WiFi***. Just for Blynk connection without Blynk/WiFiManager features because of UNO's lack of memory.
1. Add support to ***Arduino UNO WiFi R2***.

### Major Release v1.0.3

Expand Down Expand Up @@ -64,7 +64,7 @@ With version `v1.0.0` or later, you now can configure:
7. [`Arduino Core for STM32 v1.8.0 or later`](https://github.com/khoih-prog/Arduino_Core_STM32) for STM32 boards.To install go to Arduino IDE, select Boards Manager, search for ***`STM32`***
8. [`Adafruit nRF52 v0.20.1 or later`](https://www.adafruit.com) for nRF52 boards such as Adafruit NRF52840_FEATHER, NRF52832_FEATHER, NRF52840_FEATHER_SENSE, NRF52840_ITSYBITSY, NRF52840_CIRCUITPLAY, NRF52840_CLUE, NRF52840_METRO, NRF52840_PCA10056, PARTICLE_XENON, ***NINA_B302_ublox***, etc. To install go to Arduino IDE, select Boards Manager, search for ***`Adafruit nRF52`***
9. [`Functional-VLPP library`](https://github.com/khoih-prog/functional-vlpp) to use server's lambda function. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/Functional-Vlpp.svg?)](https://www.ardu-badge.com/Functional-Vlpp)
10. [`WiFiNINA_Generic library v1.5.2 or later`](https://github.com/khoih-prog/WiFiNINA_Generic). To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/WiFiNINA_Generic.svg?)](https://www.ardu-badge.com/WiFiNINA_Generic)
10. [`WiFiNINA_Generic library v1.5.1-final or later`](https://github.com/khoih-prog/WiFiNINA_Generic). To install. check [![arduino-library-badge](https://www.ardu-badge.com/badge/WiFiNINA_Generic.svg?)](https://www.ardu-badge.com/WiFiNINA_Generic)
11. [`WiFiWebServer library v1.0.1 or later`](https://github.com/khoih-prog/WiFiWebServer). To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/WiFiWebServer.svg?)](https://www.ardu-badge.com/WiFiWebServer)
12. [`FlashStorage_SAMD library v1.0.0`](https://github.com/khoih-prog/FlashStorage_SAMD) for SAMD21 and SAMD51 boards (ZERO, MKR, ***NANO_33_IOT***, M0, M0 Pro, ***AdaFruit Itsy-Bitsy M4***, etc.)
13. [`DueFlashStorage library`](https://github.com/sebnil/DueFlashStorage) for SAM DUE
Expand Down Expand Up @@ -97,6 +97,7 @@ In your code, to use WiFiManager Blynk features, replace
5. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_STM32_WM.h` for STM32 boards.
6. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_AVR_WM.h` for Mega boards using dynamic parameters.
7. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_AVR_WM_Small.h` for Mega boards not using dynamic parameters if not enough memory.
8. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_UNO_WiFi_WM_Small.h` for UNO WiFi R2 boards not using dynamic parameters if not enough memory.

to use Blynk only, with hardcoded Credentials, replace
1. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_SAMD.h` for SAMD boards.
Expand All @@ -105,7 +106,7 @@ to use Blynk only, with hardcoded Credentials, replace
4. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_DUE.h` for SAM DUE boards.
5. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_STM32.h` for STM32 boards.
6. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_AVR.h` for Mega boards.
7. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_UNO_WiFi.h` for UNO WiFi boards.
7. `BlynkSimpleWiFiNINA.h` with `BlynkSimpleWiFiNINA_UNO_WiFi.h` for UNO WiFi R2 boards.

to use EEPROM to save your configuration data.

Expand Down Expand Up @@ -1086,7 +1087,7 @@ uint16_t NUM_MENU_ITEMS = 0;

### New Releases v1.0.4

1. Add support to ***Arduino UNO WiFi***. Just for Blynk connection without Blynk/WiFiManager features because of lack of memory.
1. Add support to ***Arduino UNO WiFi***.

#### Major Release v1.0.3

Expand Down

0 comments on commit 6e75606

Please sign in to comment.