-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
64 lines (64 loc) · 1.43 KB
/
library.json
File metadata and controls
64 lines (64 loc) · 1.43 KB
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
{
"name": "actor-NeoPixelsController",
"version": "0.5.0",
"description": "Controls a number of NeoPixel",
"keywords": "Fabrica-IO, actor, output, led",
"repository":
{
"type": "git",
"url": "https://github.com/FabricaIO/actor-NeoPixelsController.git"
},
"authors":
[
{
"name": "Sam Groveman",
"email": "SamGroveman@outlook.com",
"url": "https://github.com/FabricaIO"
}
],
"dependencies": {
"Adafruit NeoPixel": "adafruit/Adafruit NeoPixel@^1.15.2",
"NeoPixelControl": "https://github.com/FabricaIO/util-NeoPixelControl.git"
},
"license": "GPLv3",
"homepage": "https://github.com/FabricaIO",
"frameworks": "arduino",
"platforms": "*",
"fabricaio" : {
"name": "NeoPixels",
"type": 1,
"category": "Output",
"libname": "NeoPixelsController",
"includes": ["NeoPixelsController"],
"description": "Controls a number of NeoPixels",
"constructor":
[
[
{
"name": "Pin",
"type": "int",
"description": "The pin to use",
"default": ""
},
{
"name": "LEDCount",
"type": "int",
"description": "The number of LEDs on the strip",
"default": ""
},
{
"name": "RGB_Type",
"type": "neoPixelType",
"description": "The type of RGB LED to use",
"default": "NEO_GRB + NEO_KHZ800"
},
{
"name": "Configfile",
"type": "String",
"description": "The file name to store settings in",
"default": "NeoPixels.json"
}
]
]
}
}