868LP 04b: Receive broadcast

This program shows how to receive packets with XBee-868LP modules. The packets received were broadcast

Required Materials

1 x Waspmote 1 x Battery 1 x MiniUSB wire 1 x XBee 868LP

Notes

- The battery has to be connected. - This example can be executed in Waspmote v15

Code

/*  
 *  ------ [868LP_04b] - receive broadcast packets  -------- 
 *  
 *  Explanation: This program shows how to receive packets with 
 *  XBee-868LP modules. The packets received were broadcast
 *  
 *  Copyright (C) 2016 Libelium Comunicaciones Distribuidas S.L. 
 *  http://www.libelium.com 
 *  
 *  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 . 
 *  
 *  Version:           3.0
 *  Design:            David Gascón 
 *  Implementation:    Yuri Carmona
 */

#include <WaspXBee868LP.h>

// define variable
uint8_t error;


void setup()
{  
  // init USB port
  USB.ON();
  USB.println(F("Receiving BROADCAST packets example"));

  // init XBee 
  xbee868LP.ON();  
}



void loop()
{   
   // receive XBee packet (wait for 10 seconds)
  error = xbee868LP.receivePacketTimeout( 10000 );

  // check answer  
  if( error == 0 ) 
  {
    // Show data stored in '_payload' buffer indicated by '_length'
    USB.print(F("Data: "));  
    USB.println( xbee868LP._payload, xbee868LP._length);
    
    // Show data stored in '_payload' buffer indicated by '_length'
    USB.print(F("Length: "));  
    USB.println( xbee868LP._length,DEC);
    
    // Show data stored in '_payload' buffer indicated by '_length'
    USB.print(F("Source MAC Address: "));  
    USB.printHex( xbee868LP._srcMAC[0] );
    USB.printHex( xbee868LP._srcMAC[1] );
    USB.printHex( xbee868LP._srcMAC[2] );
    USB.printHex( xbee868LP._srcMAC[3] );
    USB.printHex( xbee868LP._srcMAC[4] );
    USB.printHex( xbee868LP._srcMAC[5] );
    USB.printHex( xbee868LP._srcMAC[6] );
    USB.printHex( xbee868LP._srcMAC[7] );
    USB.println();    
    USB.println(F("--------------------------------"));
  }
  else
  {
    // Print error message:
    /*
     * '7' : Buffer full. Not enough memory space
     * '6' : Error escaping character within payload bytes
     * '5' : Error escaping character in checksum byte
     * '4' : Checksum is not correct	  
     * '3' : Checksum byte is not available	
     * '2' : Frame Type is not valid
     * '1' : Timeout when receiving answer   
    */
    USB.print(F("Error receiving a packet:"));
    USB.println(error,DEC);     
    USB.println(F("--------------------------------"));
  }
}

Output

H#
Receiving BROADCAST packets example
Data: <=>€#400584912#node_01#0#STR:Mensaje numero: 0#BAT:38#
Length: 55
Source MAC Address: 0013A2004098CDA2
--------------------------------
Data: <=>€#400584912#node_01#1#STR:Mensaje numero: 1#BAT:39#
Length: 55
Source MAC Address: 0013A2004098CDA2
--------------------------------
Data: <=>€#400584912#node_01#2#STR:Mensaje numero: 2#BAT:39#
Length: 55
Source MAC Address: 0013A2004098CDA2
--------------------------------

Last updated