-
Notifications
You must be signed in to change notification settings - Fork 0
/
node.json
79 lines (79 loc) · 1.74 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
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
{
"name": "Screen",
"custom_ui": "config.html",
"options": [{
"title": "Header",
"ui_width": 4,
"name": "header",
"type": "resource",
"valid": ["image"],
"default": "default-header.png"
}, {
"title": "Device schedule",
"name": "times",
"type": "json",
"hint": "Select when your device should be in low power mode.",
"default": []
}, {
"title": "Background Music",
"ui_width": 4,
"name": "music",
"type": "resource",
"valid": ["video"],
"default": "music.mp4"
}, {
"title": "Pages",
"name": "pages",
"type": "list",
"itemname": "Page",
"items": [{
"title": "Schedule",
"ui_width": 4,
"name": "schedule",
"type": "json",
"default": {
"earlierTime": 0,
"laterTime": 0
}
}, {
"title": "Duration",
"ui_width": 4,
"name": "duration",
"type": "select",
"options": [
["auto", "Automatic"],
["5", "5 seconds"],
["10", "10 seconds"],
["15", "15 seconds"],
["20", "20 seconds"]
],
"default": "10"
}, {
"title": "Layout",
"ui_width": 4,
"name": "layout",
"type": "select",
"options": [
["fullscreen", "Fullscreen"],
["text-left", "Text Left"],
["text-right", "Text Right"],
["text-center", "Centered Text"],
["text-delivery", "Delivery Text"]
],
"default": "fullscreen"
}, {
"title": "Asset",
"ui_width": 4,
"name": "media",
"type": "resource",
"valid": ["image", "video"],
"default": "empty.png"
}, {
"title": "Config",
"ui_width": 4,
"name": "config",
"type": "json",
"default": {}
}]
}]
}