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.
13 lines • 424 B
JavaScript
import { bitArrayToArray } from "../utils/BitArray.js";
import { GW_FRAME_NTF } from "./common.js";
export class GW_INITIALIZE_SCENE_NTF extends GW_FRAME_NTF {
Status;
FailedNodes;
constructor(Data) {
super(Data);
this.Status = this.Data.readUInt8(0);
this.FailedNodes = bitArrayToArray(this.Data.subarray(1, 26));
}
}
//# sourceMappingURL=GW_INITIALIZE_SCENE_NTF.js.map
;