node-red-contrib-knx-ultimate
Version:
Control your KNX intallation via Node-Red! Single Node KNX IN/OUT with optional ETS group address importer. Easy to use and highly configurable.
21 lines • 560 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.KNXPacket = void 0;
const KNXHeader_1 = require("./KNXHeader");
class KNXPacket {
constructor(type, length) {
this.type = type;
this.length = length;
this._header = new KNXHeader_1.KNXHeader(type, length);
this.type = type;
this.length = length;
}
get header() {
return this._header;
}
toBuffer() {
return Buffer.alloc(0);
}
}
exports.KNXPacket = KNXPacket;
//# sourceMappingURL=KNXPacket.js.map