forked from relu91/webthing-arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
/
library.json
84 lines (84 loc) · 1.86 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "webthing-arduino",
"description": "A library for creating Web Things using the Web of Things API. Runs on ESP8266, ESP32, Ethernet, and WiFi101-compatible boards. Compatible with the WebThings Gateway.",
"keywords": "Communication",
"version": "0.12.0",
"authors": {
"name": "WebThingsIO",
"email": "[email protected]",
"url": "https://webthings.io"
},
"repository": {
"type": "git",
"url": "https://github.com/WebThingsIO/webthing-arduino.git"
},
"license": "MPL-2.0",
"frameworks": "arduino",
"platforms": "espressif8266,espressif32,atmelavr,atmelsam",
"dependencies": {
"bblanchon/ArduinoJson": "^6.17.0"
},
"export": {
"exclude": [
"docs"
]
},
"examples": [
{
"name": "AsyncProperty",
"base": "examples/PlatformIO/AsyncProperty",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "BME280",
"base": "examples/PlatformIO/BME280",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "LED",
"base": "examples/PlatformIO/LED",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "LEDLamp",
"base": "examples/PlatformIO/LEDLamp",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "LevelSensor",
"base": "examples/PlatformIO/LevelSensor",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "RGBLamp",
"base": "examples/PlatformIO/RGBLamp",
"files": [
"platformio.ini",
"src/main.cpp"
]
},
{
"name": "TextDisplay",
"base": "examples/PlatformIO/TextDisplay",
"files": [
"platformio.ini",
"src/main.cpp"
]
}
]
}