Skip to content
This repository was archived by the owner on Dec 5, 2021. It is now read-only.

Commit 19fa3ef

Browse files
authored
v1.1.0
### Major Releases v1.1.0 1. Add support to LittleFS for ESP32 using [LITTLEFS](https://github.com/lorol/LITTLEFS) Library 2. Clean-up all compiler warnings possible. 3. Add Table of Contents 4. Add Version String
1 parent d4501ba commit 19fa3ef

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,6 +134,7 @@ This [**BlynkESP32_BT_WF** library](https://github.com/khoih-prog/BlynkESP32_BT_
134134
4. [`ESP_DoubleResetDetector library 1.1.1+`](https://github.com/khoih-prog/ESP_DoubleResetDetector) to use DRD feature. To install, check [![arduino-library-badge](https://www.ardu-badge.com/badge/ESP_DoubleResetDetector.svg?)](https://www.ardu-badge.com/ESP_DoubleResetDetector).
135135
5. [`ESPAsyncWebServer v1.2.3+`](https://github.com/me-no-dev/ESPAsyncWebServer)
136136
6. [`AsyncTCP v1.1.1+`](https://github.com/me-no-dev/AsyncTCP)
137+
7. [`LittleFS_esp32 v1.0.5+](https://github.com/lorol/LITTLEFS) to use ESP32 LIttleFS
137138

138139
---
139140

library.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,12 @@
4848
"name": "AsyncTCP",
4949
"version": "*",
5050
"platforms": ["espressif32"]
51+
},
52+
{
53+
"owner": "lorol",
54+
"name": "LittleFS_esp32",
55+
"version": "^1.0.5",
56+
"platforms": ["espressif32"]
5157
}
5258
],
5359
"platforms": ["espressif32"],

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ paragraph=By design, Blynk user can run ESP32 boards with either WiFi or BT/BLE
88
category=Communication
99
url=https://github.com/khoih-prog/Blynk_Async_ESP32_BT_WF
1010
architectures=esp32
11-
depends=Blynk,ESP_DoubleResetDetector,ESP Async WebServer,AsyncTCP
11+
depends=Blynk,ESP_DoubleResetDetector,ESP Async WebServer,AsyncTCP,LittleFS_esp32
1212
includes=BlynkSimpleEsp32_Async_WFM.h,BlynkSimpleEsp32_Async_WF.h,BlynkSimpleEsp32_Async_BLE_WF.h,BlynkSimpleEsp32_Async_BT_WF.h

platformio/platformio.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,12 @@ lib_deps =
3131
ESP_DoubleResetDetector@~1.1.1
3232
ESP Async WebServer@~1.2.3
3333
AsyncTCP@~1.1.1
34+
LittleFS_esp32@~1.0.5
3435
; PlatformIO 5.x
3536
; blynkkk/Blynk@~0.6.1
3637
; khoih-prog/ESP_DoubleResetDetector@~1.1.1
3738
; me-no-dev/ESP Async WebServer@~1.2.3
39+
; lorol/LittleFS_esp32@~1.0.5
3840

3941
build_flags =
4042
; set your debug output (default=Serial)

0 commit comments

Comments
 (0)