------ [ZB_02a] - router joins a known network --------
Explanation: This program shows how to join a router device to
a known network. It is mandatory to known the operating 64-bit
PAN ID the coordinator is running on.
Copyright (C) 2016 Libelium Comunicaciones Distribuidas S.L.
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see .
Implementation: Yuri Carmona
/**************************************************
IMPORTANT: Before running this example, it is
necessary to set a coordinator to the known PANID
**************************************************/
// known coordinator's operating 64-bit PAN ID to set
////////////////////////////////////////////////////////////////////////
uint8_t PANID[8] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88};
////////////////////////////////////////////////////////////////////////
USB.println(F("ZB_02a example"));
///////////////////////////////////////////////
///////////////////////////////////////////////
///////////////////////////////////////////////
// 1. Disable Coordinator mode
///////////////////////////////////////////////
/*************************************
WARNING: Only XBee ZigBee S2C and
XBee ZigBee S2D are able to use
************************************/
xbeeZB.setCoordinator(DISABLED);
if (xbeeZB.error_AT == 0)
USB.println(F("1. Coordinator mode disabled"));
USB.println(F("1. Error while disabling Coordinator mode"));
///////////////////////////////////////////////
///////////////////////////////////////////////
if (xbeeZB.error_AT == 0)
USB.println(F("2. PANID set OK"));
USB.println(F("2. Error while setting PANID"));
///////////////////////////////////////////////
// 3. Set channels to be scanned before creating network
///////////////////////////////////////////////
// channels from 0x0B to 0x18 (0x19 and 0x1A are excluded)
Channels are scpedified as a bitmap where depending on
the bit a channel is selected --> Bit (Channel):
0 (0x0B) 4 (0x0F) 8 (0x13) 12 (0x17)
1 (0x0C) 5 (0x10) 9 (0x14) 13 (0x18)
2 (0x0D) 6 (0x11) 10 (0x15)
3 (0x0E) 7 (0x12) 11 (0x16) */
xbeeZB.setScanningChannels(0x3F, 0xFF);
if (xbeeZB.error_AT == 0)
USB.println(F("3. Scanning channels set OK"));
USB.println(F("3. Error while setting 'Scanning channels'"));
///////////////////////////////////////////////
///////////////////////////////////////////////
// wait for the module to set the parameters
///////////////////////////////
// get network parameters
///////////////////////////////
xbeeZB.getOperating16PAN();
xbeeZB.getOperating64PAN();
USB.print(F("operatingPAN: "));
USB.printHex(xbeeZB.operating16PAN[0]);
USB.printHex(xbeeZB.operating16PAN[1]);
USB.print(F("extendedPAN: "));
USB.printHex(xbeeZB.operating64PAN[0]);
USB.printHex(xbeeZB.operating64PAN[1]);
USB.printHex(xbeeZB.operating64PAN[2]);
USB.printHex(xbeeZB.operating64PAN[3]);
USB.printHex(xbeeZB.operating64PAN[4]);
USB.printHex(xbeeZB.operating64PAN[5]);
USB.printHex(xbeeZB.operating64PAN[6]);
USB.printHex(xbeeZB.operating64PAN[7]);
USB.print(F("channel: "));
USB.printHex(xbeeZB.channel);