Skip to content

Commit f6cccae

Browse files
authored
Use SDPX license dentifier, update examples (#123)
1 parent 6307e62 commit f6cccae

File tree

1 file changed

+69
-6
lines changed

1 file changed

+69
-6
lines changed

library.json

Lines changed: 69 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,81 @@
1212
"type": "git",
1313
"url": "https://github.com/WebThingsIO/webthing-arduino.git"
1414
},
15-
"license": "Mozilla Public License Version 2.0",
15+
"license": "MPL-2.0",
16+
"frameworks": "arduino",
1617
"platforms": "espressif8266,espressif32,atmelavr,atmelsam",
1718
"dependencies": {
18-
"ArduinoJson": "^6.15.0"
19+
"bblanchon/ArduinoJson": "^6.15.0"
1920
},
2021
"export": {
21-
"include": [
22-
"*.cpp",
23-
"*.h"
22+
"exclude": [
23+
"docs"
2424
]
2525
},
2626
"examples": [
27-
"examples/PlatformIO/*/src/*.cpp"
27+
{
28+
"name": "AsyncProperty",
29+
"base": "examples/PlatformIO/AsyncProperty",
30+
"files": [
31+
"platformio.ini",
32+
"src/main.cpp"
33+
]
34+
},
35+
{
36+
"name": "BME280",
37+
"base": "examples/PlatformIO/BME280",
38+
"files": [
39+
"platformio.ini",
40+
"src/main.cpp"
41+
]
42+
},
43+
{
44+
"name": "LED",
45+
"base": "examples/PlatformIO/LED",
46+
"files": [
47+
"platformio.ini",
48+
"src/main.cpp"
49+
]
50+
},
51+
{
52+
"name": "LEDLamp",
53+
"base": "examples/PlatformIO/LEDLamp",
54+
"files": [
55+
"platformio.ini",
56+
"src/main.cpp"
57+
]
58+
},
59+
{
60+
"name": "LevelSensor",
61+
"base": "examples/PlatformIO/LevelSensor",
62+
"files": [
63+
"platformio.ini",
64+
"src/main.cpp"
65+
]
66+
},
67+
{
68+
"name": "RGBLamp",
69+
"base": "examples/PlatformIO/RGBLamp",
70+
"files": [
71+
"platformio.ini",
72+
"src/main.cpp"
73+
]
74+
},
75+
{
76+
"name": "TextDisplay",
77+
"base": "examples/PlatformIO/TextDisplay",
78+
"files": [
79+
"platformio.ini",
80+
"src/main.cpp"
81+
]
82+
},
83+
{
84+
"name": "WioTerminal",
85+
"base": "examples/PlatformIO/WioTerminal",
86+
"files": [
87+
"platformio.ini",
88+
"src/main.cpp"
89+
]
90+
}
2891
]
2992
}

0 commit comments

Comments
 (0)