zigbee-herdsman
    Preparing search index...

    Type Alias EmberNetworkParameters

    Holds network parameters.

    For information about power settings and radio channels, see the technical specification for the RF communication module in your Developer Kit.

    type EmberNetworkParameters = {
        channels: number;
        extendedPanId: ExtendedPanId;
        joinMethod: EmberJoinMethod;
        nwkManagerId: NodeId;
        nwkUpdateId: number;
        panId: PanId;
        radioChannel: number;
        radioTxPower: number;
    }
    Index

    Properties

    channels: number

    The NWK channel mask. The list of preferred channels that the NWK manager has told this device to use when searching for the network. This may only be set at joining when using EMBER_USE_CONFIGURED_NWK_STATE as the join method. uint32_t

    extendedPanId: ExtendedPanId

    The network's extended PAN identifier. int8_t[EXTENDED_PAN_ID_SIZE]

    joinMethod: EmberJoinMethod

    Join method: The protocol messages used to establish an initial parent. It is ignored when forming a ZigBee network, or when querying the stack for its network parameters.

    nwkManagerId: NodeId

    NWK Manager ID. The ID of the network manager in the current network. This may only be set at joining when using EMBER_USE_CONFIGURED_NWK_STATE as the join method.

    nwkUpdateId: number

    An NWK Update ID. The value of the ZigBee nwkUpdateId known by the stack. It is used to determine the newest instance of the network after a PAN ID or channel change. This may only be set at joining when using EMBER_USE_CONFIGURED_NWK_STATE as the join method. uint8_t

    panId: PanId

    The network's PAN identifier. uint16_t

    radioChannel: number

    A radio channel. Be sure to specify a channel supported by the radio. uint8_t

    radioTxPower: number

    A power setting, in dBm. int8_t