-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.js-Pimatic
133 lines (131 loc) · 4.53 KB
/
config.js-Pimatic
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
/* Magic Mirror Config Sample
*
* By Michael Teeuw http://michaelteeuw.nl
* MIT Licensed.
*/
var config = {
port: 8080,
language: 'de',
timeFormat: 24,
units: 'metric',
ipWhitelist: ["192.168.0.1/24", "127.0.0.1", "127.0.1.1","::fff:0.0.0.0/1", "::fff:128.0.0.0/2", "::fff:192.0.0.0/3", "::fff:224.0.0.0/4", "::ffff:127.0.0.1", "::1"],
modules: [
{
module: 'MMM-Pimatic',
header: 'Pimatic Notification Board',
position: 'top_center',
config: {
host :'pimatic',
port : 80,
user : 'YourPimaticUserLoginName',
passwd : 'YourPimaticUserLoginPassword',
style: 'notifications',
devices: [
{
name: 'Alarmanlage',
icon: 'icon-Alarmanlage',
attributeName: 'Alarmanlage.contact',
defaultValue: false,
notification : 'Eingeschaltet'
},
{
name: 'GASALARM',
icon: 'icon-Systemmeldungen',
attributeName: 'gasalarm.Gasalarm',
defaultValue: '-',
notification : 'ALARM - Hohe Gaskonzentration im @!',
soundNotification: 'endless',
soundDevice: 'both',
soundFile: 'alarm-sirene.mp3'
},
{
name: 'Heizung',
icon: 'icon-Heizung',
attributeName: 'dThermiComStatus.Heizungstatus',
defaultValue: '@ThermiCom ...',
notification: '@'
},
{
name: 'Systemmeldungen',
icon: 'icon-Systemmeldungen',
attributeName: 'dSystemMeldungen.Systemstatus',
defaultValue: 'keine Meldungen',
notification: '@'
},
{
name: 'Garage',
icon: 'icon-Garage',
attributeName: 'garageDOORstatus.contact',
defaultValue: true,
notification: 'Geöffnet'
},
{
name: 'Müllabfuhr',
icon: 'icon-Muellabfuhr',
attributeName: 'dgarbagecollectioninfo.Müllabfuhr',
defaultValue: 'heute keine Abfuhr',
notification: '@'
},
{
name: 'Termine',
icon: 'icon-Termine',
attributeName: 'dTermine.Termine',
defaultValue: 'keine',
notification: '@'
},
{
name: 'Geburtstage',
icon: 'icon-Geburtstage',
attributeName: 'dGeburtstage.Geburtstage',
defaultValue: '-',
notification: '@'
},
{
name: 'Wasserverbrauch',
icon: 'icon-Wasser',
attributeName: 'watercounter-status.info',
defaultValue: '-',
notification: '@'
},
],
},
},
{
module: 'MMM-Pimatic',
header: 'Temperaturen',
position: 'bottom_center',
config: {
host :'pimatic',
port : 80,
user : 'YourPimaticUserLoginName',
passwd : 'YourPimaticUserLoginPassword',
style: 'temperatures',
unit: '°',
devices: [
{
name: 'Wohnzimmer',
attributeName: 'Temperaturen.Wohnzimmer',
},
{
name: 'Aussen',
attributeName: 'ThermiComPuffer.T7',
},
{
name: 'Puffer',
attributeName: 'ThermiComPuffer.T6',
},
{
name: 'Gaskessel',
attributeName: 'ThermiComKessel.T9',
},
{
name: 'Kollektor',
attributeName: 'ThermiComPuffer.T1',
},
]
}
},
]
};
/*************** DO NOT EDIT THE LINE BELOW ***************/
if (typeof module !== 'undefined') {module.exports = config;}