klf-200-api
Version:
This module provides a wrapper to the socket API of a Velux KLF-200 interface. You will need at least firmware 0.2.0.0.71 on your KLF interface for this library to work.
22 lines • 1.12 kB
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GW_PASSWORD_CHANGE_REQ = void 0;
const common_js_1 = require("./common.js");
class GW_PASSWORD_CHANGE_REQ extends common_js_1.GW_FRAME_REQ {
OldPassword;
NewPassword;
constructor(OldPassword, NewPassword) {
super(common_js_1.C_MAX_PWD_LENGTH * 2);
this.OldPassword = OldPassword;
this.NewPassword = NewPassword;
if (Buffer.from(this.OldPassword, "utf8").byteLength > common_js_1.C_MAX_PWD_LENGTH)
throw new Error(`Old password must not exceed ${common_js_1.C_MAX_PWD_LENGTH} characters length.`);
if (Buffer.from(this.NewPassword, "utf8").byteLength > common_js_1.C_MAX_PWD_LENGTH)
throw new Error(`New password must not exceed ${common_js_1.C_MAX_PWD_LENGTH} characters length.`);
const buff = this.Data.subarray(this.offset);
buff.write(this.OldPassword, 0);
buff.write(this.NewPassword, common_js_1.C_MAX_PWD_LENGTH);
}
}
exports.GW_PASSWORD_CHANGE_REQ = GW_PASSWORD_CHANGE_REQ;
//# sourceMappingURL=GW_PASSWORD_CHANGE_REQ.js.map
;