-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.json
More file actions
122 lines (122 loc) · 2.92 KB
/
Copy pathconfig.example.json
File metadata and controls
122 lines (122 loc) · 2.92 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
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
{
"server": {
"name": "LoxEvo",
"port": 8080
},
"loxone": {
"baseUrl": "http://192.168.1.100",
"username": "loxone-user",
"password": "loxone-pass",
"dryRun": true
},
"alexaBridge": {
"enabled": false,
"name": "LoxEvo",
"advertiseIp": "",
"advertisePort": 80,
"bridgeId": "",
"debug": false
},
"discovery": {
"helperUrl": "http://127.0.0.1:18091",
"helperToken": "",
"helperTimeoutMs": 5000
},
"commands": {
"kueche_licht_hell": {
"label": "Küche Licht Hell",
"voiceName": "Küche Licht Hell",
"category": "Licht",
"room": "kueche",
"function": "licht",
"action": "hell",
"loxone": {
"type": "changeTo",
"uuid": "replace-with-loxone-lightcontroller-uuid",
"value": "777",
"offValue": "778"
},
"confirmation": {
"enabled": false,
"text": "OK"
},
"enabled": true
},
"rolladen_tv_auf": {
"label": "Rollladen TV Auf",
"voiceName": "Rollladen TV Auf",
"category": "Rollladen",
"room": "tv",
"function": "rolladen",
"action": "auf",
"loxone": {
"type": "direct",
"uuid": "replace-with-loxone-shutter-uuid",
"value": "FullUp"
},
"enabled": true
},
"lueftung_bad_ein": {
"label": "Lüftung Bad Ein",
"voiceName": "Lüftung Bad Ein",
"category": "Lüftung",
"room": "bad",
"function": "lueftung",
"action": "ein",
"loxone": {
"type": "direct",
"uuid": "replace-with-loxone-ventilation-uuid",
"value": "on"
},
"enabled": true
},
"roboter_stop": {
"label": "Roboter Stop",
"voiceName": "Roboter Stop",
"category": "Reinigung",
"room": "",
"function": "roboter",
"action": "stop",
"loxone": {
"type": "pulse",
"uuid": "replace-with-loxone-robot-stop-button-uuid",
"value": ""
},
"enabled": true
},
"roboter_kueche": {
"label": "Roboter Küche",
"voiceName": "Roboter Küche",
"category": "Reinigung",
"room": "kueche",
"function": "roboter",
"action": "reinigen",
"loxone": {
"type": "direct",
"uuid": "replace-with-loxone-robot-room-selector-uuid",
"value": "2"
},
"enabled": true
}
},
"tts": {
"enabled": false,
"cookieFile": "/config/Node.txt",
"amazonPage": "amazon.de",
"alexaServiceHost": "layla.amazon.de",
"acceptLanguage": "de-DE",
"proxyOwnIp": "",
"proxyPort": 0,
"authRefreshIntervalHours": 24,
"usePushConnection": false,
"loginProxyAutoReconnect": true,
"loginProxyReconnectIntervalSeconds": 10,
"loginProxyReconnectTimeoutMinutes": 15,
"defaultVolume": 40,
"alarmVolume": 100,
"ignoreZeroText": true,
"defaultDevices": [],
"allDevices": [],
"alarmDevices": []
}
}