UNPKG

zigbee-herdsman

Version:

An open source ZigBee gateway solution with node.js.

16 lines 546 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.nwkPanId = void 0; /* eslint-disable @typescript-eslint/explicit-function-return-type */ /* eslint-disable @typescript-eslint/explicit-module-boundary-types */ const struct_1 = require("../struct"); /** * Creates a network PAN ID struct. * * @param data Data to initialize structure with. */ const nwkPanId = (data) => struct_1.Struct.new() .member("uint16", "panId") .build(data); exports.nwkPanId = nwkPanId; //# sourceMappingURL=nwk-pan-id.js.map