-
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.67 KB
/
library.json
File metadata and controls
70 lines (70 loc) · 1.67 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": "eventreceiver-LEDIndicator",
"version": "0.5.0",
"description": "LED that changes colors or blinks different number of times for event statuses",
"keywords": "Fabrica-IO, event receiver, led",
"repository":
{
"type": "git",
"url": "https://github.com/FabricaIO/eventreceiver-LEDIndicator.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": "IndicatorLED",
"type": 3,
"category": "LED",
"libname": "LEDIndicator",
"includes": ["LEDIndicator"],
"description": "LED that changes colors or blinks different number of times for event statuses",
"constructor":
[
[
{
"name": "LEDPin",
"type": "uint8_t",
"description": "The pin to use",
"default": ""
},
{
"name": "LEDCount",
"type": "int",
"description": "The number of LEDs in an addressable string",
"default": ""
},
{
"name": "ignoreRunning",
"type": "bool",
"description": "Ignore status events when running normally",
"default": "false"
},
{
"name": "RGB",
"type": "bool",
"description": "If the LED is a WS2812 RGB LED",
"default": "true"
},
{
"name": "RGB_Type",
"type": "neoPixelType",
"description": "If RGB, the type of RGB LED to use",
"default": "NEO_GRB + NEO_KHZ800"
}
]
]
}
}