-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.mjs
60 lines (60 loc) · 1.36 KB
/
settings.mjs
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
export default class settings {
constructor(homeeID) {
this.address = '';
this.city = '';
this.zip = 11111;
this.state = 'BW';
this.latitude = '';
this.longitude = '';
this.country = 'Germany';
this.language = 'de';
this.wlan_dhcp = 1;
this.remote_access =1;
this.beta= 0;
this.webhooks_key ='WEBHOOKKEY';
this.automatic_location_detection = 0;
this.polling_interval = 60;
this.timezone = 'Europe%2FBerlin';
this.enable_analytics = 0;
this.wlan_enabled=1;
this.wlan_ip_address = '192.168.178.222';
this.wlan_ssid = 'homeeWifi';
this.wlan_mode = 2;
this.online =0;
this.lan_enabled=1;
this.available_ssids = ['homeeWifi'];
this.time = 1562707105;
this.civil_time = '2019-07-09 23:18:25';
this.version = '2.25.0 (ed9c50)';
this.uid = homeeID;
this.gateway_id = 1313337;
this.cubes = [];
this.extensions= {
'weather': {
'enabled': 1,
},
'amazon_alexa': {
'enabled': 0,
},
'google_assistant': {
'enabled': 0,
'syncing': 0,
},
'apple_homekit': {
'enabled': 0,
'paired': 0,
'config_number': 1,
'syncing': 0,
},
'ftp': {
'enabled': 0,
},
'history': {
'enabled': 0,
},
'backup': {
'enabled': 0,
},
};
}
}