-
Notifications
You must be signed in to change notification settings - Fork 29
/
library.json
101 lines (101 loc) · 2.13 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "Dimmable Light for Arduino",
"version": "1.6.0",
"authors": {
"name": "Fabiano Riccardi",
"email": "fabiano.riccardi@outlook.com"
},
"description": "This library allows to easily control dimmers (also known as thyristors).",
"keywords": [
"dimmer",
"triac",
"thyristor",
"timer",
"light",
"arduino-library",
"phase-fired control"
],
"repository": {
"type": "git",
"url": "https://github.com/fabianoriccardi/dimmable-light"
},
"licence": "LGPL-2.1-or-later",
"frameworks": [
"arduino"
],
"platforms": [
"espressif8266",
"espressif32",
"atmelavr",
"atmelsam",
"raspberrypi"
],
"dependencies": [
{
"owner": "mike-matera",
"name": "ArduinoSTL",
"version": "^1.3.3",
"platforms": [
"atmelavr"
]
}
],
"examples": [
{
"name": "1_dimmable_light",
"base": "examples/1_dimmable_light",
"files": [
"1_dimmable_light.ino"
]
},
{
"name": "2_dimmable_lights",
"base": "examples/2_dimmable_lights",
"files": [
"2_dimmable_lights.ino"
]
},
{
"name": "3_dimmable_light_5_light",
"base": "examples/3_dimmable_light_5_light",
"files": [
"3_dimmable_light_5_light.ino"
]
},
{
"name": "4_lights_manager",
"base": "examples/4_lights_manager",
"files": [
"4_lights_manager.ino"
]
},
{
"name": "5_dimmable_manager_n_lights",
"base": "examples/5_dimmable_manager_n_lights",
"files": [
"5_dimmable_manager_n_lights.ino"
]
},
{
"name": "6_8_lights_effects",
"base": "examples/6_8_lights_effects",
"files": [
"6_8_lights_effects.ino"
]
},
{
"name": "7_linearized_dimmable_light",
"base": "examples/7_linearized_dimmable_light",
"files": [
"7_linearized_dimmable_light.ino"
]
},
{
"name": "8_set_frequency_automatically",
"base": "examples/8_set_frequency_automatically",
"files": [
"8_set_frequency_automatically.ino"
]
}
]
}