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

Commit

Permalink
Major Releases v1.1.0
Browse files Browse the repository at this point in the history
### Major Releases v1.1.0

1. Add support to LittleFS for ESP32 using [LittleFS_esp32](https://github.com/lorol/LITTLEFS) Library
2. Add support to MultiDetectDetector. **MultiDetectDetector** feature to force Config Portal when configurable multi-reset is detected within predetermined time.
3. Clean-up all compiler warnings possible.
4. Add Table of Contents
5. Add Version String
6. Add MRD-related examples.
  • Loading branch information
khoih-prog authored Jan 4, 2021
1 parent 3b05e42 commit 5000766
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/ESP8266_GSM/ESP8266_GSM.ino
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ void setup()
SerialMon.begin(115200);
while (!SerialMon);

delay(200);

SerialMon.print(F("\nStart ESP8266_GSM (Simultaneous WiFi+GSM) using "));
SerialMon.print(CurrentFileFS);
SerialMon.println(" on " + String(ARDUINO_BOARD));
Expand Down
2 changes: 2 additions & 0 deletions examples/ESP8266_GSM_SHT3x/ESP8266_GSM_SHT3x.ino
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ void setup()
SerialMon.begin(115200);
while (!SerialMon);

delay(200);

SerialMon.print(F("\nStart ESP8266_GSM_SHT3x (Simultaneous WiFi+GSM) using "));
SerialMon.print(CurrentFileFS);
SerialMon.println(" on " + String(ARDUINO_BOARD));
Expand Down
2 changes: 2 additions & 0 deletions examples/ESP8266_MRD_GSM/ESP8266_MRD_GSM.ino
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ void setup()
SerialMon.begin(115200);
while (!SerialMon);

delay(200);

SerialMon.print(F("\nStart ESP8266_MRD_GSM (Simultaneous WiFi+GSM) using "));
SerialMon.print(CurrentFileFS);
SerialMon.println(" on " + String(ARDUINO_BOARD));
Expand Down

0 comments on commit 5000766

Please sign in to comment.