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

Commit cfb2edd

Browse files
authored
Update
1 parent da3e185 commit cfb2edd

File tree

3 files changed

+31
-31
lines changed

3 files changed

+31
-31
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ Using this library to detect a double reset, using:
3434

3535
## Prerequisite
3636

37-
1. [`Arduino IDE 1.8.12+` for Arduino](https://www.arduino.cc/en/Main/Software)
37+
1. [`Arduino IDE 1.8.13+`](https://www.arduino.cc/en/Main/Software)
3838
2. [`ESP32 core 1.0.4+`](https://github.com/espressif/arduino-esp32/releases) for ESP32 (Use Arduino Board Manager)
39-
3. [`ESP8266 core 2.7.3+`](https://github.com/esp8266/Arduino/releases) for ES82662 (Use Arduino Board Manager) to use LittleFS or SPIFFS. SPIFFS is deprecated from ESP8266 core 2.7.1.
39+
3. [`ESP8266 core 2.7.4+`](https://github.com/esp8266/Arduino/releases) for ES82662 (Use Arduino Board Manager) to use LittleFS or SPIFFS. SPIFFS is deprecated from ESP8266 core 2.7.1.
4040

4141
---
4242
---
@@ -57,6 +57,7 @@ Another way to install is to:
5757
4. Copy whole `ESP_DoubleResetDetector-master` folder to Arduino libraries' directory such as `~/Arduino/libraries/`.
5858

5959
### VS Code & PlatformIO:
60+
6061
1. Install [VS Code](https://code.visualstudio.com/)
6162
2. Install [PlatformIO](https://platformio.org/platformio-ide)
6263
3. Install **ESP_DoubleResetDetector** library by using [Library Manager](https://docs.platformio.org/en/latest/librarymanager/). Search for ESP_DoubleResetDetector in [Platform.io Author's Libraries](https://platformio.org/lib/search?query=author:%22Khoi%20Hoang%22)
@@ -185,7 +186,7 @@ void loop()
185186
5. [Blynk_Async_ESP32_BT_WF](https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF),
186187
6. [Blynk_Async_GSM_Manager](https://github.com/khoih-prog/Blynk_Async_GSM_Manager),
187188

188-
and many more.
189+
and many more to come.
189190

190191
---
191192

library.json

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
{
2-
"name": "ESP_DoubleResetDetector",
3-
"version": "1.0.3",
4-
"keywords": "device,control,rtc,eeprom,littlefs,spiffs,reset,data,esp32,esp8266",
5-
"description": "Library to detect a double reset, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and EEPROM and SPIFFS for ESP32",
6-
"authors":
7-
{
8-
"name": "Khoi Hoang",
9-
"url": "https://github.com/khoih-prog",
10-
"maintainer": true
11-
},
12-
"repository":
13-
{
14-
"type": "git",
15-
"url": "https://github.com/khoih-prog/ESP_DoubleResetDetector"
16-
},
17-
"homepage": "https://github.com/khoih-prog/ESP_DoubleResetDetector",
18-
"export": {
19-
"exclude": [
20-
"linux",
21-
"extras",
22-
"tests"
23-
]
24-
},
25-
"frameworks": "arduino",
26-
"platforms": "espressif",
27-
"examples": "examples/*/*/*.ino"
2+
"name": "ESP_DoubleResetDetector",
3+
"version": "1.0.3",
4+
"keywords": "device,control,rtc,eeprom,littlefs,spiffs,reset,data,esp32,esp8266",
5+
"description": "Library to detect a double reset, using RTC Memory, EEPROM, LittleFS or SPIFFS for ESP8266 and EEPROM and SPIFFS for ESP32",
6+
"authors":
7+
{
8+
"name": "Khoi Hoang",
9+
"url": "https://github.com/khoih-prog",
10+
"maintainer": true
11+
},
12+
"repository":
13+
{
14+
"type": "git",
15+
"url": "https://github.com/khoih-prog/ESP_DoubleResetDetector"
16+
},
17+
"homepage": "https://github.com/khoih-prog/ESP_DoubleResetDetector",
18+
"export": {
19+
"exclude": [
20+
"linux",
21+
"extras",
22+
"tests"
23+
]
24+
},
25+
"frameworks": "arduino",
26+
"platforms": "espressif",
27+
"examples": "examples/*/*/*.ino"
2828
}

platformio/platformio.ini

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ upload_speed = 921600
2828
;monitor_port = COM11
2929

3030
lib_deps =
31-
Blynk@~0.6.1
32-
ESP_DoubleResetDetector@~1.0.3
31+
3332

3433
build_flags =
3534
; set your debug output (default=Serial)

0 commit comments

Comments
 (0)