mirror of https://github.com/Hypfer/Valetudo.git
33 lines
867 B
JavaScript
33 lines
867 B
JavaScript
const DreameMiotHelper = require("../DreameMiotHelper");
|
|
const LocateCapability = require("../../../core/capabilities/LocateCapability");
|
|
|
|
/**
|
|
* @extends LocateCapability<import("../DreameValetudoRobot")>
|
|
*/
|
|
class DreameLocateCapability extends LocateCapability {
|
|
/**
|
|
*
|
|
* @param {object} options
|
|
* @param {import("../DreameValetudoRobot")} options.robot
|
|
*
|
|
* @param {number} options.siid MIOT Service ID
|
|
* @param {number} options.aiid MIOT Action ID
|
|
*/
|
|
constructor(options) {
|
|
super(options);
|
|
|
|
this.siid = options.siid;
|
|
this.aiid = options.aiid;
|
|
|
|
this.helper = new DreameMiotHelper({robot: this.robot});
|
|
}
|
|
/**
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async locate() {
|
|
await this.helper.executeAction(this.siid, this.aiid);
|
|
}
|
|
}
|
|
|
|
module.exports = DreameLocateCapability;
|