#include "XbeeTools.h"

//Robot A code (Robot A is the transitting robot)

task main()
{
  InitRS485(); //Initialize the Xbee Radio

  string messageToSend = "hello"; //Create the string to send
  SendString(messageToSend); //Send the string
}
