-
Notifications
You must be signed in to change notification settings - Fork 1
/
node.json
110 lines (110 loc) · 3.29 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "Live feed",
"permissions": {
"network": "Needs to fetch rmv live info"
},
"options": [{
"title": "OpenData API",
"type": "section",
"ui_width": 12
}, {
"title": "API-Key oder Cache-URL",
"ui_width": 8,
"name": "key",
"type": "string",
"default": "",
"placeholder": "5555555-555555-5555-5555-555555",
"hint": "RMV OpenData API key"
}, {
"title": "Request Limit",
"ui_width": 4,
"name": "requests_max",
"type": "integer",
"default": 4900,
"hint": "maximum number of requests done to RMV API (per device, max 4900) - will get ignored if using a caching server"
}, {
"title": "HAFAS stop id(s)",
"ui_width": 12,
"name": "stop",
"type": "string",
"default": "3016471",
"hint": "separate multiple ids by comma"
}, {
"title": "Display Options",
"type": "section",
"ui_width": 12
}, {
"title": "Remove string from destination",
"ui_width": 12,
"name": "remove",
"type": "string",
"default": "Wiesbaden",
"hint": "String which is removed from stop names and destinations"
}, {
"title": "Ignored destinations",
"ui_width": 12,
"name": "ignore_destination",
"type": "string",
"default": "",
"hint": "Filter out any transport where destination matches (matched after 'remove string from destination' - regex possible)"
}, {
"title": "Rotation",
"ui_width": 4,
"name": "rotate",
"type": "select",
"default": 0,
"hint": "Rotation of screen (clockwise)",
"options": [
[0, "0°"],
[90, "90°"],
[180, "180°"],
[270, "270°"]
]
}, {
"title": "Show vehicle type",
"ui_width": 4,
"name": "showtype",
"type": "boolean",
"default": true
}, {
"title": "Large Minutes",
"ui_width": 4,
"name": "large_minutes",
"type": "boolean",
"default": false,
"hint": "Show 'in X minutes' in large font on the right, instead of small print in the info line"
}, {
"title": "Colored lines",
"ui_width": 4,
"name": "colored_lines",
"type": "boolean",
"default": true,
"hint": "if deselected, lines will appear as grey box with white text"
}, {
"title": "Time Offset in minutes",
"ui_width": 4,
"name": "offset",
"type": "integer",
"default": 0,
"hint": "offset to use when displaying departures (does „early fadeout“ to account for walking time to stop)"
}, {
"title": "Background",
"ui_width": 4,
"name": "background_color",
"type": "color",
"default": [0,0,0,1]
}, {
"title": "Font",
"ui_width": 6,
"name": "font",
"type": "font",
"default": "silkscreen.ttf"
}, {
"default": 150,
"hint": "Height of one 'departure in less than 10 minutes' line, departures further in the future will use 66% of that",
"name": "line_height",
"title": "Line Height",
"ui_width": 6,
"type": "integer"
}]
}