forked from inventwo/ioBroker.vis-inventwo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
242 lines (218 loc) · 6.86 KB
/
main.js
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
"use strict";
/*
* Created with @ioBroker/create-adapter v1.21.1
*/
// The adapter-core module gives you access to the core ioBroker functions
// you need to create an adapter
const utils = require("@iobroker/adapter-core");
// Load your modules here, e.g.:
// const fs = require("fs");
class visInventwo extends utils.Adapter {
/**
* @param {Partial<ioBroker.AdapterOptions>} [options={}]
*/
constructor(options) {
super({
...options,
name: "vis-inventwo",
});
this.on("ready", this.onReady.bind(this));
//this.on("objectChange", this.onObjectChange.bind(this));
//this.on("stateChange", this.onStateChange.bind(this));
// this.on("message", this.onMessage.bind(this));
this.on("unload", this.onUnload.bind(this));
}
/**
* Is called when databases are connected and adapter received configuration.
*/
async onReady() {
// Initialize your adapter here
// this.log.info("config Stripes: " + this.config.Stripes);
// this.log.info("config Background: " + this.config.Background);
// this.log.info("config Radius: " + this.config.Radius);
// this.log.info("config Info: " + this.config.Info);
/*
For every state in the system there has to be also an object of type state
Here a simple template for a boolean variable named "testVariable"
Because every adapter instance uses its own unique namespace variable names can't collide with other adapters variables
*/
await this.setObjectAsync("CSS.Button", {
type: "state",
common: {
name: "Button-Color",
type: "string",
role: "inventwo.color",
read: true,
write: true,
},
native: {},
});
await this.setObjectAsync("CSS.Active", {
type: "state",
common: {
name: "Button-Active-Color",
type: "string",
role: "inventwo.color",
read: true,
write: true,
},
native: {},
});
await this.setObjectAsync("CSS.Text", {
type: "state",
common: {
name: "Text-Color",
type: "string",
role: "inventwo.color",
read: true,
write: true,
},
native: {},
});
/*
await this.setObjectAsync("CSS.Stripes", {
type: "state",
common: {
name: "Tripes-Color",
type: "string",
role: "inventwo.color",
read: true,
write: true,
},
native: {},
});
await this.setObjectAsync("CSS.Background", {
type: "state",
common: {
name: "Background-Color",
type: "string",
role: "inventwo.color",
read: true,
write: true,
},
native: {},
});
await this.setObjectAsync("CSS.Radius", {
type: "state",
common: {
name: "Button-Radius",
type: "string",
role: "inventwo.design",
read: true,
write: true,
},
native: {},
});
await this.setObjectAsync("Info", {
type: "state",
common: {
name: "Adapter-Version",
type: "string",
role: "inventwo.info",
read: true,
write: false,
},
native: {},
});
*/
// in this template all states changes inside the adapters namespace are subscribed
this.subscribeStates("CSS.Button");
this.subscribeStates("CSS.Active");
this.subscribeStates("CSS.Text");
// this.subscribeStates("CSS.Stripes");
// this.subscribeStates("CSS.Background");
// this.subscribeStates("CSS.Radius");
// this.subscribeStates("CSS.Info");
/*
setState examples
you will notice that each setState will cause the stateChange event to fire (because of above subscribeStates cmd)
*/
// the variable testVariable is set to true as command (ack=false)
//await this.setStateAsync("testVariable", true);
// same thing, but the value is flagged "ack"
// ack should be always set to true if the value is received from or acknowledged from the target system
if(await this.getStateAsync("CSS.Button") == null)
await this.setStateAsync("CSS.Button", { val: "#333333", ack: true });
if(await this.getStateAsync("CSS.Active") == null)
await this.setStateAsync("CSS.Active", { val: "#455618", ack: true });
if(await this.getStateAsync("CSS.Text") == null)
await this.setStateAsync("CSS.Text", { val: "#C7C7C7", ack: true });
// await this.setStateAsync("CSS.Stripes", { val: this.config.Stripes, ack: true });
// await this.setStateAsync("CSS.Background", { val: this.config.Background, ack: true });
// await this.setStateAsync("CSS.Radius", { val: this.config.Radius, ack: true });
// await this.setStateAsync("Info", { val: this.config.Version, ack: true });
// same thing, but the state is deleted after 30s (getState will return null afterwards)
//await this.setStateAsync("testVariable", { val: true, ack: true, expire: 30 });
// examples for the checkPassword/checkGroup functions
//let result = await this.checkPasswordAsync("admin", "ioBroker");
//this.log.info("check user admin pw ioBroker: " + result);
//result = await this.checkGroupAsync("admin", "admin");
//this.log.info("check group user admin group admin: " + result);
}
/**
* Is called when adapter shuts down - callback has to be called under any circumstances!
* @param {() => void} callback
*/
onUnload(callback) {
try {
this.log.info("cleaned everything up...");
callback();
} catch (e) {
callback();
}
}
/**
* Is called if a subscribed object changes
* @param {string} id
* @param {ioBroker.Object | null | undefined} obj
*/
onObjectChange(id, obj) {
if (obj) {
// The object was changed
this.log.info(`object ${id} changed: ${JSON.stringify(obj)}`);
} else {
// The object was deleted
this.log.info(`object ${id} deleted`);
}
}
/**
* Is called if a subscribed state changes
* @param {string} id
* @param {ioBroker.State | null | undefined} state
*/
onStateChange(id, state) {
if (state) {
// The state was changed
this.log.info(`state ${id} changed: ${state.val} (ack = ${state.ack})`);
} else {
// The state was deleted
this.log.info(`state ${id} deleted`);
}
}
// /**
// * Some message was sent to this instance over message box. Used by email, pushover, text2speech, ...
// * Using this method requires "common.message" property to be set to true in io-package.json
// * @param {ioBroker.Message} obj
// */
// onMessage(obj) {
// if (typeof obj === "object" && obj.message) {
// if (obj.command === "send") {
// // e.g. send email or pushover or whatever
// this.log.info("send command");
// // Send response in callback if required
// if (obj.callback) this.sendTo(obj.from, obj.command, "Message received", obj.callback);
// }
// }
// }
}
// @ts-ignore parent is a valid property on module
if (module.parent) {
// Export the constructor in compact mode
/**
* @param {Partial<ioBroker.AdapterOptions>} [options={}]
*/
module.exports = (options) => new visInventwo(options);
} else {
// otherwise start the instance directly
new visInventwo();
}