#include <WaspXBee900HP.h>
// Destination MAC address
//////////////////////////////////////////
char RX_ADDRESS[] = “0013A20040A63E21”;
//////////////////////////////////////////
// Define the Waspmote ID
char WASPMOTE_ID[] = “node_01”;
USB.println(F(“Sending packets example”));
// store Waspmote identifier in EEPROM memory
frame.setID( WASPMOTE_ID );
///////////////////////////////////////////
///////////////////////////////////////////
frame.createFrame(ASCII);
frame.addSensor(SENSOR_STR, “new_sensor_frame”);
frame.addSensor(SENSOR_BAT, PWR.getBatteryLevel());
///////////////////////////////////////////
///////////////////////////////////////////
error = xbee900HP.send( RX_ADDRESS, frame.buffer, frame.length );
USB.println(F(“send ok”));
USB.println(F(“send error”));