900HP 08a: Complete example TX

This example shows how to send a packet using unicast 64-bit destination address. After sending the packet, Waspmote waits for the response of the receiver and prints all available information

Required Materials

1 x Waspmote 1 x Battery 1 x MicroUSB wire 1 x XBee-PRO 900HP

Notes

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

Code

/*  
 *  ------ [900HP_08a] - complete example send  ------
 *  
 *  Explanation: This is a complete example for XBee-900HP
 *  This example shows how to send a packet using unicast 64-bit
 *  destination address. After sending the packet, Waspmote waits
 *  for the response of the receiver and prints all available 
 *  information  
 *  
 *  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 <WaspXBee900HP.h>
#include <WaspFrame.h>

// Destination MAC address
//////////////////////////////////////////
char RX_ADDRESS[] = "0013A20040A63E21";
//////////////////////////////////////////

// define variable
uint8_t error;



void setup()
{
  // init USB port
  USB.ON();
  USB.println(F("Complete example (TX node)"));

  // set Waspmote identifier
  frame.setID("node_TX");

  // init XBee
  xbee900HP.ON();

}


void loop()
{ 
  //////////////////////////
  // 1. create frame
  //////////////////////////  

  // 1.1. create new frame
  frame.createFrame(ASCII);  

  // 1.2. add frame fields
  frame.addSensor(SENSOR_STR, "Complete example message"); 
  frame.addSensor(SENSOR_BAT, PWR.getBatteryLevel() ); 
  
  USB.println(F("\n1. Created frame to be sent"));
  frame.showFrame();

  //////////////////////////
  // 2. send packet
  //////////////////////////  

  // send XBee packet
  error = xbee900HP.send( RX_ADDRESS, frame.buffer, frame.length );   
  
  USB.println(F("\n2. Send a packet to the RX node: "));
  
  // check TX flag
  if( error == 0 )
  {
    USB.println(F("send ok"));
    
    // blink green LED
    Utils.blinkGreenLED();    
  }
  else 
  {
    USB.println(F("send error"));
    
    // blink red LED
    Utils.blinkRedLED();  
  }


  //////////////////////////
  // 3. receive answer
  //////////////////////////  
  
  USB.println(F("\n3. Wait for an incoming message"));
  
  // receive XBee packet
  error = xbee900HP.receivePacketTimeout( 10000 );

  // check answer  
  if( error == 0 ) 
  {
    // Show data stored in '_payload' buffer indicated by '_length'
    USB.print(F("Data: "));  
    USB.println( xbee900HP._payload, xbee900HP._length);
    
    // Show data stored in '_payload' buffer indicated by '_length'
    USB.print(F("Length: "));  
    USB.println( xbee900HP._length,DEC);
  }
  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);     
  }
  
  // wait for 5 seconds
  USB.println(F("\n----------------------------------"));
  delay(5000);

}

Output

H#
Complete example (TX node)

1. Created frame to be sent
===============================
Current ASCII Frame:
Length: 69
Frame Type: 134
frame (HEX): 3C3D3E86022332323330353330453639354234414230236E6F64655F54582330235354523A436F6D706C657465206578616D706C65206D657373616765234241543A393823
frame (STR): <=>�#2230530E695B4AB0#node_TX#0#STR:Complete example message#BAT:98#
===============================

2. Send a packet to the RX node:
send ok

3. Wait for an incoming message
Data: Message_from_RX_node
Length: 20

----------------------------------

1. Created frame to be sent
===============================
Current ASCII Frame:
Length: 69
Frame Type: 134
frame (HEX): 3C3D3E86022332323330353330453639354234414230236E6F64655F54582331235354523A436F6D706C657465206578616D706C65206D657373616765234241543A393823
frame (STR): <=>�#2230530E695B4AB0#node_TX#1#STR:Complete example message#BAT:98#
===============================

2. Send a packet to the RX node:
send ok

3. Wait for an incoming message
Data: Message_from_RX_node
Length: 20

----------------------------------

1. Created frame to be sent
===============================
Current ASCII Frame:
Length: 69
Frame Type: 134
frame (HEX): 3C3D3E86022332323330353330453639354234414230236E6F64655F54582332235354523A436F6D706C657465206578616D706C65206D657373616765234241543A393823
frame (STR): <=>�#2230530E695B4AB0#node_TX#2#STR:Complete example message#BAT:98#
===============================

2. Send a packet to the RX node:
send ok

3. Wait for an incoming message
Data: Message_from_RX_node
Length: 20

----------------------------------

Last updated