mirror of https://github.com/Hypfer/Valetudo.git
52 lines
1.4 KiB
JavaScript
52 lines
1.4 KiB
JavaScript
const DreameMiotHelper = require("../DreameMiotHelper");
|
|
const DreameMiotServices = require("../DreameMiotServices");
|
|
const MappingPassCapability = require("../../../core/capabilities/MappingPassCapability");
|
|
|
|
/**
|
|
* @extends MappingPassCapability<import("../DreameValetudoRobot")>
|
|
*/
|
|
class DreameMappingPassCapability extends MappingPassCapability {
|
|
/**
|
|
*
|
|
* @param {object} options
|
|
* @param {import("../DreameValetudoRobot")} options.robot
|
|
*/
|
|
constructor(options) {
|
|
super(options);
|
|
|
|
this.miot_actions = {
|
|
start: {
|
|
siid: DreameMiotServices["GEN2"].VACUUM_2.SIID,
|
|
aiid: DreameMiotServices["GEN2"].VACUUM_2.ACTIONS.START.AIID
|
|
}
|
|
};
|
|
this.miot_properties = {
|
|
mode: {
|
|
piid: DreameMiotServices["GEN2"].VACUUM_2.PROPERTIES.MODE.PIID
|
|
}
|
|
};
|
|
|
|
this.mappingModeId = 21;
|
|
|
|
this.helper = new DreameMiotHelper({robot: this.robot});
|
|
}
|
|
|
|
/**
|
|
* @returns {Promise<void>}
|
|
*/
|
|
async startMapping() {
|
|
await this.helper.executeAction(
|
|
this.miot_actions.start.siid,
|
|
this.miot_actions.start.aiid,
|
|
[
|
|
{
|
|
piid: this.miot_properties.mode.piid,
|
|
value: this.mappingModeId
|
|
}
|
|
]
|
|
);
|
|
}
|
|
}
|
|
|
|
module.exports = DreameMappingPassCapability;
|