forked from chrisjoyce911/esp32FOTA
-
Notifications
You must be signed in to change notification settings - Fork 2
/
library.json
30 lines (30 loc) · 799 Bytes
/
library.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "esp32FOTA",
"version": "0.2.7",
"keywords": "firmware, OTA, Over The Air Updates, ArduinoOTA",
"description": "Allows for firmware to be updated from a webserver, the device can check for updates at any time. Uses a simple JSON file to outline if a new firmware is avaiable.",
"examples": "examples/*/*.ino",
"repository": {
"type": "git",
"url": "https://github.com/chrisjoyce911/esp32FOTA.git"
},
"authors": [
{
"name": "Chris Joyce",
"email": "[email protected]",
"url": "https://github.com/chrisjoyce911",
"maintainer": true
}
],
"frameworks": "arduino",
"headers": "esp32FOTA.hpp",
"platforms": [
"esp32",
"espressif32"
],
"dependencies": [
"WiFiClientSecure",
"HTTPClient",
"ArduinoJson"
]
}