forked from raywo/MMM-PublicTransportHafas
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathdemo.config.js
More file actions
74 lines (73 loc) · 2.09 KB
/
Copy pathdemo.config.js
File metadata and controls
74 lines (73 loc) · 2.09 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
71
72
73
74
const config = {
address: "0.0.0.0",
ipWhitelist: [],
logLevel: ["INFO", "LOG", "WARN", "ERROR", "DEBUG"],
modules: [
{
module: "clock",
position: "middle_center"
},
{
module: "MMM-PublicTransportHafas",
position: "top_left",
config: {
hafasProfile: "rejseplanen",
stationID: "8600626",
stationName: "rejseplanen - somewhere",
timeToStation: 600,
updatesEvery: 30,
marqueeLongDirections: false,
maxReachableDepartures: 6,
customLineStyles: "halle",
replaceInDirections: {"Halle (Saale), ": "", " (Tram/Bus)": ""},
showOnlyLineNumbers: true,
showAbsoluteTime: false,
toggleAbsoluteTimeInterval: 10,
showTableHeaders: false,
tableHeaderOrder: ["line", "direction", "time", "platform"],
timeInFuture: 90
}
},
{
module: "MMM-PublicTransportHafas",
position: "bottom_left",
config: {
stationID: "8012202",
stationName: "db - Wilhelm-Leuschner-Platz"
}
},
{
module: "MMM-PublicTransportHafas",
position: "top_right",
config: {
hafasProfile: "insa",
stationID: "3937",
stationName: "insa - Betriebshof Freiimfelder Straße",
timeToStation: 1,
updatesEvery: 30,
marqueeLongDirections: false,
maxReachableDepartures: 5,
customLineStyles: "halle",
replaceInDirections: {"Halle (Saale), ": "", " (Tram/Bus)": "", "Betriebshof Freiimfelder Str.": "Otto-Stomps-Str."},
showOnlyLineNumbers: true,
showAbsoluteTime: false,
showTableHeaders: false,
tableHeaderOrder: ["line", "direction", "time", "platform"],
timeInFuture: 690
}
},
{
module: "MMM-PublicTransportHafas",
position: "bottom_right",
config: {
hafasProfile: "vbn",
stationID: "9013786",
stationName: "vbn - Brunnenstraße"
}
}
]
};
/** ************* DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {
module.exports = config;
}