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

Commit 5000766

Browse files
authored
Major Releases v1.1.0
### 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.
1 parent 3b05e42 commit 5000766

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed

examples/ESP8266_GSM/ESP8266_GSM.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ void setup()
9191
SerialMon.begin(115200);
9292
while (!SerialMon);
9393

94+
delay(200);
95+
9496
SerialMon.print(F("\nStart ESP8266_GSM (Simultaneous WiFi+GSM) using "));
9597
SerialMon.print(CurrentFileFS);
9698
SerialMon.println(" on " + String(ARDUINO_BOARD));

examples/ESP8266_GSM_SHT3x/ESP8266_GSM_SHT3x.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,8 @@ void setup()
148148
SerialMon.begin(115200);
149149
while (!SerialMon);
150150

151+
delay(200);
152+
151153
SerialMon.print(F("\nStart ESP8266_GSM_SHT3x (Simultaneous WiFi+GSM) using "));
152154
SerialMon.print(CurrentFileFS);
153155
SerialMon.println(" on " + String(ARDUINO_BOARD));

examples/ESP8266_MRD_GSM/ESP8266_MRD_GSM.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,8 @@ void setup()
9191
SerialMon.begin(115200);
9292
while (!SerialMon);
9393

94+
delay(200);
95+
9496
SerialMon.print(F("\nStart ESP8266_MRD_GSM (Simultaneous WiFi+GSM) using "));
9597
SerialMon.print(CurrentFileFS);
9698
SerialMon.println(" on " + String(ARDUINO_BOARD));

0 commit comments

Comments
 (0)