-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlibrary.json
More file actions
45 lines (45 loc) · 963 Bytes
/
library.json
File metadata and controls
45 lines (45 loc) · 963 Bytes
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
{
"name": "esp-thingserver",
"description": "A library for creating Lab Things. Runs on ESP8266 and ESP32",
"keywords": "Communication",
"version": "0.2.0",
"authors": {
"name": "Joel Collins",
"email": "joel@jtcollins.net"
},
"repository": {
"type": "git",
"url": "https://github.com/labthings/esp-thingserver"
},
"license": "MPL-2.0",
"platforms": "espressif8266,espressif32",
"dependencies": {
"ArduinoJson": "^6.15.0",
"NTPClient": "^3.1.0",
"ESP Async WebServer": "^1.2.0"
},
"export": {
"include": [
"src/*.cpp",
"src/*.h",
"examples/*"
]
},
"examples": [
{
"name": "BME280",
"base": "examples/BME280/src",
"files": ["main.cpp"]
},
{
"name": "LED",
"base": "examples/LED/src",
"files": ["main.cpp"]
},
{
"name": "NeoPixel",
"base": "examples/RGBArrayNeoPixel/src",
"files": ["main.cpp"]
}
]
}