UNPKG

zigbee-herdsman

Version:

An open source ZigBee gateway solution with node.js.

12 lines (11 loc) 280 B
/** * Buffer-oriented structure representing network configuration. */ export interface NetworkOptions { panId: number; extendedPanId: Buffer; channelList: number[]; networkKey: Buffer; networkKeyDistribute: boolean; hasDefaultExtendedPanId?: boolean; }