-
Notifications
You must be signed in to change notification settings - Fork 1
/
node.json
52 lines (52 loc) · 1.33 KB
/
node.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
{
"name": "Device Info Screen",
"permissions": {
"unboxed": "Needs access to the device configuration",
"network": "Needs network access for online check",
"run-as-root": "Needs access to /sd/config"
},
"options": [{
"title": "Logo",
"ui_width": 6,
"name": "logo",
"type": "resource",
"valid": ["image"],
"default": "empty.png"
}, {
"title": "Info Text",
"ui_width": 12,
"name": "info",
"type": "string",
"default": ""
}, {
"title": "Devices",
"name": "devices",
"type": "list",
"itemname": "Device",
"items": [{
"title": "Device",
"ui_width": 4,
"name": "serial",
"type": "device"
}, {
"title": "Display rotation",
"ui_width": 4,
"name": "rotation",
"type": "select",
"hint": "Rotate content clockwise?",
"options": [
[0, "None"],
[90, "90°"],
[180, "180°"],
[270, "270°"]
],
"default": 0
}, {
"title": "Big Text",
"ui_width": 4,
"name": "big",
"type": "string",
"default": ""
}]
}]
}