You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-2Lines changed: 3 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -13,6 +13,7 @@ A simple library to add support for Over-The-Air (OTA) updates to your project.
13
13
14
14
## Features
15
15
16
+
-[x] Zlib or gzip compressed firmware support
16
17
-[x] Web update (requires web server)
17
18
-[x] Batch firmware sync
18
19
-[x] Force firmware update [#8]
@@ -34,7 +35,7 @@ There are a few things that need to be in place for an update to work.
34
35
- A webserver with the firmware information in a JSON file
35
36
- Firmware version
36
37
- Firmware type
37
-
- Firmware bin
38
+
- Firmware bin (can optionnally be compressed with zlib or gzip)
38
39
- For https or signature check: SPIFFS with root_ca.pem (https) and rsa_key.pem (signature check)
39
40
40
41
You can supply http or https URLs. If you are using https, you need the root_ca.pem in your SPIFFS partition. For the actual firmware it will use https when you define port 443 or 4433. Otherwise it will use plain http.
@@ -190,8 +191,8 @@ void loop()
190
191
Late init is possible using `FOTAConfig_t`, allowing more complex configurations:
191
192
192
193
```cpp
194
+
#include <SPIFFS.h> // include filesystem *before* esp32FOTA librart
0 commit comments