-
Notifications
You must be signed in to change notification settings - Fork 3
/
io-package.json
113 lines (113 loc) · 3.6 KB
/
io-package.json
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
{
"common": {
"name": "fusionsolar",
"version": "1.2.4",
"news": {
"1.2.4": {
"en": "API Call Limit Optimization",
"de": "API Call- Limit Optimierung"
},
"1.2.3": {
"en": "support for new API-version",
"de": "Support für neue API-Version"
},
"1.1.0": {
"en": "Opt-in for loading data of 'optimizers' or unknown devices (to reduce api load)",
"de": "Opt-in für das Laden von Daten für 'Optimizer' oder unbekannten Geräten (um api last zu reduzieren)"
},
"1.0.1": {
"en": "Wait time betw. API calls can now be configured (should help on quota problems)",
"de": "Wartezeit zw. API-Anfragen ist jetzt konfigurierbar (kann Quota-Probleme lösen)"
},
"1.0.0": {
"en": "MVP level reached after some fixes regarding automatic async retries",
"de": "MVP Status erreicht, nach fixes bzgl. autom retry"
},
"0.3.0": {
"en": "added device related channels (now MVP candidate)",
"de": "gerätespezifische Kanäle ergänzt (MVP Kandidat)"
},
"0.2.0": {
"en": "login and inverter realtime KPI now working",
"de": "login und echtzeit KPIs des inverters funktionsfähig"
},
"0.1.0": {
"en": "initial release",
"de": "Erstveröffentlichung"
}
},
"title": "Huawei FusionSolar API",
"titleLang": {
"en": "Huawei FusionSolar API",
"de": "Huawei FusionSolar API"
},
"desc": {
"en": "Communicates with the Huawei FusionSolar API",
"de": "Kommuniziert mit der Huawei FusionSolar API"
},
"authors": [
"KornSW"
],
"keywords": [
"Huawei", "FusionSolar", "SUN2000", "PV"
],
"license": "MIT",
"platform": "Javascript/Node.js",
"main": "main.js",
"icon": "sun2000.png",
"enabled": true,
"extIcon": "https://raw.githubusercontent.com/KornSW/ioBroker.fusionsolar/master/admin/sun2000.png",
"readme": "https://github.com/KornSW/ioBroker.fusionsolar/blob/master/README.md",
"loglevel": "info",
"mode": "daemon",
"type": "energy",
"compact": true,
"connectionType": "cloud",
"dataSource": "poll",
"materialize": true,
"dependencies": [
{
"js-controller": ">=3.1.0"
}
]
},
"protectedNative": [
"client_secret"
],
"encryptedNative": [
"client_secret"
],
"native": {
"username": "",
"client_secret": "",
"polltime": 180,
"timeslotlength": 3,
"skipOptimizers": true,
"skipUnknownDevices": true,
"apiVersion": "default",
"apiRetry": true
},
"objects": [],
"instanceObjects": [
{
"_id": "info",
"type": "channel",
"common": {
"name": "Information"
},
"native": {}
},
{
"_id": "info.connection",
"type": "state",
"common": {
"role": "indicator.connected",
"name": "If communication with the cloud works",
"type": "boolean",
"read": true,
"write": false,
"def": false
},
"native": {}
}]
}