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
|
var config = {
address: "0.0.0.0", // any
port: 8080,
ipWhitelist: [], // any
language: "de",
timeFormat: 24,
units: "metric",
serverOnly: true,
modules: [
{
module: "MMM-Trello",
position: "bottom_bar",
config: {
api_key: "",
token: "",
list: "",
reloadInterval: 1000 * 60 * 60,
updateInterval: 1000 * 60 * 5,
animationSpeed: 0,
showTitle: true,
showDescription: true,
isCompleted: false,
showLineBreaks: true,
showDueDate: false,
showChecklists: false,
showChecklistTitle: false,
wholeList: false,
},
},
{
module: "MMM-ImagesPhotos",
position: "fullscreen_below",
config: {
opacity: 1.0,
animationSpeed: 0,
updateInterval: 60000,
}
},
{
module: "MMM-DateOnly",
position: "top_right",
config: {
showWeek: false,
dateFormat: "dddd, LL",
}
},
{
module: "MMM-PublicTransportHafas",
position: "top_right",
config: {
stationID: "",
stationName: "",
updatesEvery: 60 * 15,
direction: "",
interval: 1000 * 60 * 15,
timeToStation: 0,
timeInFuture: 180,
showColoredLineSymbols: false,
useColorForRealtimeInfo: false,
showAbsoluteTime: true,
marqueeLongDirections: false,
showTableHeaders: false,
maxReachableDepartures: 2,
maxUnreachableDepartures: 0,
fadeReachableDepartures: false,
},
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== "undefined") {module.exports = config;}
|