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.
20 lines • 854 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.GW_SCENE_INFORMATION_CHANGED_NTF = exports.SceneChangeType = void 0;
const common_js_1 = require("./common.js");
var SceneChangeType;
(function (SceneChangeType) {
SceneChangeType[SceneChangeType["Deleted"] = 0] = "Deleted";
SceneChangeType[SceneChangeType["Modified"] = 1] = "Modified";
})(SceneChangeType || (exports.SceneChangeType = SceneChangeType = {}));
class GW_SCENE_INFORMATION_CHANGED_NTF extends common_js_1.GW_FRAME_NTF {
SceneID;
SceneChangeType;
constructor(Data) {
super(Data);
this.SceneChangeType = this.Data.readUInt8(0);
this.SceneID = this.Data.readUInt8(1);
}
}
exports.GW_SCENE_INFORMATION_CHANGED_NTF = GW_SCENE_INFORMATION_CHANGED_NTF;
//# sourceMappingURL=GW_SCENE_INFORMATION_CHANGED_NTF.js.map
;