-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlibrary.json
61 lines (61 loc) · 1.93 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name" : "iotsa",
"version" : "2.7",
"description" : "Library/application framework that allows easy creation of web servers and REST servers. Optional modules provide access control, clock synchronisation, over-the-air programming, static document storage and retrieval and more. Add your own modules to access hardware.",
"keywords" : "web, http, rest, wifi",
"authors" : {
"name" : "Jack Jansen",
"email" : "[email protected]"
},
"repository" : {
"type" : "git",
"url" : "https://github.com/cwi-dis/iotsa.git"
},
"build": {
"extraScript" : "platformio_pre_script.py",
"libCompatMode" : "strict"
},
"frameworks" : "Arduino",
"platforms" : [ "espressif8266", "espressif32"],
"dependencies" : [
{
"name" : "Adafruit NeoPixel",
"owner" : "adafruit"
},
{
"name" : "ArduinoJson",
"owner" : "bblanchon"
},
{
"name" : "ArduinoJWT",
"version" : "https://github.com/jackjansen/ArduinoJWT"
},
{
"name" : "CoAP simple library",
"version" : "https://github.com/jackjansen/CoAP-simple-library"
},
{
"name" : "Ds1302",
"owner" : "treboada"
},
{
"platforms" : ["espressif32"],
"owner" : "madhephaestus",
"name" : "ESP32Encoder",
"version" : "https://github.com/jackjansen/ESP32Encoder#exp-jack-esp32c3"
},
{
"platforms" : ["espressif32"],
"owner" : "h2zero",
"name" : "NimBLE-Arduino"
},
{
"platforms" : ["espressif32"],
"name" : "esp32_https_server_compat",
"version" : "https://github.com/jackjansen/esp32_https_server_compat#exp-jack-sha-header"
}
],
"examples" : [
"[Ee]xamples/*/*.ino"
]
}