-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.schema.json
101 lines (101 loc) · 2.79 KB
/
config.schema.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
{
"pluginAlias": "HyperionJub",
"pluginType": "platform",
"singular": true,
"schema": {
"type": "object",
"properties": {
"name": {
"title": "name",
"type": "string",
"required": true,
"default": "TV Backlight"
},
"token": {
"title": "Api Token",
"description": "This can be generated in {HYPERION_URL}/#conf_network --> Token Management",
"type": "string",
"required": false,
"default": ""
},
"url": {
"title": "Url",
"type": "string",
"required": true,
"default": "192.168.0.0",
"description": "optionally include http(s)://. If this is not present, it will automatically be appended"
},
"port": {
"title": "Port",
"description": "Usually 8090",
"type": "string",
"required": false,
"default": "8090"
},
"priority": {
"title": "Priority",
"description": "Highly recommended to keep it at 50",
"type": "integer",
"required": false,
"default": 50
},
"effects": {
"title": "Effects Name",
"description": "find these by going into {HYPERION_URL}/#effects_configurator.<br>The first default one 'None' is required.<br>Due to limitations with the home app, this will be shown as a number selector in the app.<br>This feature also required the Home+ 6 or the Eve app.<br>The default effects **should** be present in hyperion by default",
"type": "array",
"required": false,
"items": {
"title": "Effect",
"description": "",
"type": "string"
},
"default": [
"none",
"Collision",
"Color traces",
"Fire",
"Full color mood blobs",
"Knight rider",
"Lights",
"Matrix",
"Pac-man",
"Plasma",
"Police Lights Single",
"Rainbow swirl fast",
"Sea waves",
"sparks",
"Atomic swirl",
"Blue mood blobs",
"Breath",
"Candle",
"Cinema brighten lights",
"Cinema dim lights",
"Cold mood blobs",
"Double swirl",
"Fire",
"Flags Germany/Sweden",
"Green mood blobs",
"Led Test",
"Led Test - Sequence",
"Light clock",
"Lights",
"Notify blue",
"Police Lights Solid",
"Rainbow mood",
"Rainbow swirl",
"Random",
"Red mood blobs",
"Snake",
"Strobe red",
"Strobe white",
"System Shutdown",
"Trails",
"Trails color",
"Warm mood blobs",
"Waves with Color",
"X-Mas"
]
}
}
}
}