-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibrary.json
More file actions
70 lines (70 loc) · 1.57 KB
/
library.json
File metadata and controls
70 lines (70 loc) · 1.57 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
65
66
67
68
69
70
{
"name": "actor-RuckusLEDMatrix",
"version": "1.0.0",
"description": "Controls a RoboRuckus LED matrix display",
"keywords": "Fabrica-IO, actor, roboruckus, display, led",
"repository":
{
"type": "git",
"url": "https://github.com/RoboRuckus/actor-RuckusLEDMatrix.git"
},
"authors":
[
{
"name": "Sam Groveman",
"email": "SamGroveman@outlook.com",
"url": "https://RoboRuckus.com"
}
],
"dependencies": {
"NeoPixelsController": "https://github.com/FabricaIO/actor-NeoPixelsController",
"RoboRuckusDevice": "https://github.com/RoboRuckus/util-RoboRuckusDevice"
},
"license": "GPLv3",
"homepage": "https://RoboRuckus.com",
"frameworks": "arduino",
"platforms": "*",
"fabricaio" : {
"name": "RuckusMatrix",
"type": 1,
"category": "display",
"libname": "RuckusLEDMatrix",
"includes": ["RuckusLEDMatrix"],
"description": "Controls a RoboRuckus LED matrix display",
"constructor":
[
[
{
"name": "Pin",
"type": "int",
"description": "Pin to use",
"default": ""
},
{
"name": "LED_X",
"type": "int",
"description": "Number of LEDs on X-axis",
"default": "5"
},
{
"name": "LED_Y",
"type": "int",
"description": "Number of LEDs on Y-axis",
"default": "5"
},
{
"name": "RGB_Type",
"type": "neoPixelType",
"description": "Number of LEDs on Y-axis",
"default": "NEO_GRB + NEO_KHZ800"
},
{
"name": "configFile",
"type": "String",
"description": "The name of the config file",
"default": "RuckusLEDMatrix.json"
}
]
]
}
}