forked from greatestview/homebridge-valetudo-xiaomi-vacuum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vacuumre.js
431 lines (365 loc) · 11.1 KB
/
vacuumre.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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
const { sendJSONRequest } = require('./request');
const types = require('./types');
class VacuumRe {
constructor(log, config, statusCallback) {
this.ip = config.ip;
this.log = log;
const powerControl = config['power-control'];
if (powerControl) {
const defaultSpeedValue = VacuumRe.getSpeedValue(powerControl['default-speed'] || 'balanced');
const highSpeedValue = VacuumRe.getSpeedValue(powerControl['high-speed'] || 'max');
this.powerControl = {
defaultSpeed: defaultSpeedValue,
highSpeed: highSpeedValue,
mop: powerControl['mop-enabled'] === true,
};
log.debug(`Setting power control: default speed - ${this.powerControl.defaultSpeed}, high speed - ${this.powerControl.highSpeed}, mop enabled - ${this.powerControl.mop}`);
}
this.current_status = null;
this.status_callbacks = [];
this.current_status_time = null;
this.status_timer = null;
this.idle_update_interval = 120000;
this.busy_update_interval = 10000;
this.status_callback = statusCallback;
if (!this.ip) {
throw new Error('You must provide an ip address of the vacuum cleaner.');
}
}
static statusUrl(ip) {
return `http://${ip}/api/current_status`;
}
static parseStatus(response) {
return response;
}
isHighSpeedMode(callback) {
this.getStatus(false, (error, status) => {
if (error) {
callback(error, false);
return;
}
callback(null, status.fan_power === this.powerControl.highSpeed);
});
}
isMopMode(callback) {
this.getStatus(false, (error, status) => {
if (error) {
callback(error, false);
return;
}
callback(null, status.fan_power === VacuumRe.SPEEDS.mop);
});
}
setHighSpeedMode(on, callback) {
this.isHighSpeedMode((error, isOn) => {
if (error) {
callback(error);
return;
}
if (on === isOn) {
callback(null);
return;
}
if (on) {
this.setFanSpeed(this.powerControl.highSpeed, callback);
} else {
this.setFanSpeed(this.powerControl.defaultSpeed, callback);
}
});
}
setMopMode(on, callback) {
this.isMopMode((error, isOn) => {
if (error) {
callback(error);
}
if (on && isOn) {
callback(null);
}
if (!on && !isOn) {
callback(null);
}
if (on) {
this.setFanSpeed(VacuumRe.SPEEDS.mop, callback);
} else {
this.setFanSpeed(this.powerControl.defaultSpeed, callback);
}
});
}
async setFanSpeed(value, callback) {
this.log.debug(`Setting fan power to ${value}`);
try {
await sendJSONRequest({
url: `http://${this.ip}/api/fanspeed`, method: 'PUT', content: { speed: value }, raw_response: true,
});
this.updateStatus(true);
callback(null);
} catch (e) {
this.log.error(`Failed to change fan power: ${e}`);
callback(e);
}
}
getBatteryLevel(callback) {
this.getStatus(false, (error, status) => {
if (error) {
callback(error, null);
} else {
callback(null, status.battery);
}
});
}
getChargingState(callback) {
this.getStatus(false, (error, status) => {
if (error) {
callback(error);
} else if (status.state === VacuumRe.STATES.CHARGING) {
callback(null, types.CHARGING_STATE.CHARGING);
} else if (
this.current_status.state === VacuumRe.STATES.CHARGER_DISCONNECTED
|| this.current_status.state === VacuumRe.STATES.CHARGING_PROBLEM
) {
callback(null, types.CHARGING_STATE.DISCHARGING);
} else {
callback(null, types.CHARGING_STATE.CHARGED);
}
});
}
async version(callback) {
try {
const response = await sendJSONRequest({ url: `http://${this.ip}/api/get_fw_version` });
if (response != null) {
callback(null, response.version);
} else {
throw Error('Cannot get current version');
}
} catch (e) {
this.log.error(`Error parsing firmware info: ${e}`);
callback(e);
}
}
/* getBatteryLow(callback) {
this.log.debug('getting the battery level');
this.getStatus(false, (error) => {
if (error) {
callback(error);
} else if (this.current_status.battery < 10) {
callback(null, Characteristic.StatusLowBattery.BATTERY_LEVEL_LOW);
} else {
callback(null, Characteristic.StatusLowBattery.BATTERY_LEVEL_NORMAL);
}
});
} */
async doFind(callback) {
const { log } = this;
try {
await sendJSONRequest({
url: `http://${this.ip}/api/find_robot`, method: 'PUT', content: { action: 'locate' }, raw_response: true,
});
callback();
} catch (e) {
log.error(`Failed to identify robot: ${e}`);
callback(e);
}
}
async goHome(callback) {
const { log } = this;
log.debug('Executing go home');
try {
await sendJSONRequest({ url: `http://${this.ip}/api/drive_home`, method: 'PUT', raw_response: true });
callback();
} catch (e) {
log.error(`Failed to execute go home: ${e}`);
callback(e);
} finally {
setTimeout(() => { this.updateStatus(true); }, 2000);
}
}
isGoingHome(callback) {
this.getStatus(false, (error, status) => {
if (error) {
callback(new Error(`Error retrieving going home status: ${error}`));
return;
}
callback(null, status.state === VacuumRe.STATES.RETURNING_HOME);
});
}
async startCleaning(callback) {
this.log.debug('Executing cleaning');
try {
await sendJSONRequest({ url: `http://${this.ip}/api/start_cleaning`, method: 'PUT', raw_response: true });
callback();
} catch (e) {
this.log.error(`Failed to start cleaning: ${e}`);
callback(e);
} finally {
setTimeout(() => { this.updateStatus(true); }, 2000);
}
}
async stopCleaning(callback) {
this.log.debug('Executing stop cleaning');
this.getStatus(true, async (err, status) => {
if (err) {
callback(err);
return;
}
if (
status.state === VacuumRe.STATES.IDLE
|| this.current_status.state === VacuumRe.STATES.RETURNING_HOME
|| this.current_status.state === VacuumRe.STATES.CHARGING
|| this.current_status.state === VacuumRe.STATES.PAUSED
|| this.current_status.state === VacuumRe.STATES.SPOT_CLEANING
|| this.current_status.state === VacuumRe.STATES.DOCKING
|| this.current_status.state === VacuumRe.STATES.GOING_TO_TARGET
) {
callback(new Error('Cannot stop cleaning in current state'));
}
try {
await sendJSONRequest({ url: `http://${this.ip}/api/stop_cleaning`, method: 'PUT', raw_response: true });
callback();
} catch (e) {
this.log.error(`Failed to stop cleaning: ${e}`);
callback(e);
} finally {
setTimeout(() => { this.updateStatus(true); }, 2000);
}
});
}
isCleaning(callback) {
this.getStatus(false, (error, status) => {
this.log.debug(`Is cleaning? error: ${error}, state: ${status !== null ? status.state : null}`);
if (error) {
return callback(error);
}
return callback(null, status.state === VacuumRe.STATES.CLEANING);
});
}
async startSpotCleaning(callback) {
this.log.debug('Executing spot cleaning');
try {
await sendJSONRequest({ url: `http://${this.ip}/api/spot_clean`, method: 'PUT', raw_response: true });
callback();
} catch (e) {
this.log.error(`Failed to start spot cleaning: ${e}`);
callback(e);
} finally {
setTimeout(() => { this.updateStatus(true); }, 2000);
}
}
isSpotCleaning(callback) {
this.getStatus(false, (error, status) => {
if (error) {
callback(error);
return;
}
callback(null, status.state === VacuumRe.STATES.SPOT_CLEANING);
});
}
updateStatus(forced = false) {
this.log.debug('Updating vacuum status');
this.getStatus(forced, (err, status) => {
if (err) {
return;
}
try {
this.status_callback(status);
} catch (e) {
this.log.error('status callback function errored out');
}
});
}
updateInterval() {
if (this.current_status !== null) {
switch (this.current_status.state) {
case VacuumRe.STATES.CHARGING:
case VacuumRe.STATES.IDLE:
return this.idle_update_interval; // slow update interval for idle states
default:
break;
}
}
return this.busy_update_interval; // fast update interval for non-idle states
}
clearUpdateTimer() {
clearTimeout(this.status_timer);
}
setupUpdateTimer() {
this.status_timer = setTimeout(() => { this.updateStatus(true); }, this.updateInterval());
}
async getStatus(forced, callback) {
if (this.status_callbacks.length > 0) {
this.log.debug('Pushing status callback to queue - updating');
this.status_callbacks.push(callback);
return;
}
const now = Date.now();
if (!forced && this.current_status !== null
&& this.current_status_time !== null
&& (now - this.current_status_time < this.busy_update_interval)) {
this.log.debug('Returning cached status');
callback(null, this.current_status);
return;
}
this.clearUpdateTimer();
this.log.debug(`Executing update, forced: ${forced}`);
this.status_callbacks.push(callback);
try {
const response = await sendJSONRequest({ url: VacuumRe.statusUrl(this.ip) });
this.log.debug('Done executing update');
const status = VacuumRe.parseStatus(response);
this.current_status = status;
this.current_status_time = Date.now();
const callbacks = this.status_callbacks;
this.status_callbacks = [];
this.log.debug(`Calling ${callbacks.length} queued callbacks`);
callbacks.forEach((element) => {
element(null, status);
});
this.setupUpdateTimer();
} catch (e) {
this.log.error(`Error parsing current status info: ${e}`);
const callbacks = this.status_callbacks;
this.status_callbacks = [];
callbacks.forEach((element) => {
element(e, null);
});
this.setupUpdateTimer();
}
}
static getSpeedValue(preset) {
switch (preset) {
case 'quiet': return VacuumRe.SPEEDS.quiet;
case 'balanced': return VacuumRe.SPEEDS.balanced;
case 'turbo': return VacuumRe.SPEEDS.turbo;
case 'max': return VacuumRe.SPEEDS.max;
case 'mop': return VacuumRe.SPEEDS.mop;
default: throw Error(`Invalid power preset given: ${preset}`);
}
}
}
VacuumRe.SPEEDS = {
mop: 105,
quiet: 38,
balanced: 60,
turbo: 75,
max: 100,
};
VacuumRe.STATES = {
STARTING: 1,
CHARGER_DISCONNECTED: 2,
IDLE: 3,
REMOTE_ACTIVE: 4,
CLEANING: 5,
RETURNING_HOME: 6,
MANUAL_MODE: 7,
CHARGING: 8,
CHARGING_PROBLEM: 9,
PAUSED: 10,
SPOT_CLEANING: 11,
ERROR: 12,
SHUTTING_DOWN: 13,
UPDATING: 14,
DOCKING: 15,
GOING_TO_TARGET: 16,
ZONE_CLEANING: 17,
ROOMS_CLEANING: 18,
};
module.exports = { VacuumRe };