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.
16 lines • 611 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GW_INITIALIZE_SCENE_NTF = void 0;
const BitArray_js_1 = require("../utils/BitArray.js");
const common_js_1 = require("./common.js");
class GW_INITIALIZE_SCENE_NTF extends common_js_1.GW_FRAME_NTF {
Status;
FailedNodes;
constructor(Data) {
super(Data);
this.Status = this.Data.readUInt8(0);
this.FailedNodes = (0, BitArray_js_1.bitArrayToArray)(this.Data.subarray(1, 26));
}
}
exports.GW_INITIALIZE_SCENE_NTF = GW_INITIALIZE_SCENE_NTF;
//# sourceMappingURL=GW_INITIALIZE_SCENE_NTF.js.map
;