blue bee with xbee shield connected to arduino problem

hi, i try to test a sample code from http://www.instructables.com/id/Modify- ... mand-Mode/
I have modified it to use it for bluebee. The purpose of project is to get the mac address and rssi signal of other device. However, when i enter command 'AT', there is no output in the series monitor. The picture of the hardware and output of series monitor and the sample code are attached.
I have modified it to use it for bluebee. The purpose of project is to get the mac address and rssi signal of other device. However, when i enter command 'AT', there is no output in the series monitor. The picture of the hardware and output of series monitor and the sample code are attached.
- CODE: SELECT_ALL_CODE
#include <SoftwareSerial.h>
SoftwareSerial BTSerial(2, 3); // RX | TX
void setup()
{
Serial.begin(38400);
Serial.println("Enter AT commands:");
BTSerial.begin(38400); // bluebee default speed in AT command more
}
void loop()
{
// Keep reading from xbww and send to Arduino Serial Monitor
if (BTSerial.available())
Serial.write(BTSerial.read());
// Keep reading from Arduino Serial Monitor and send to xbee
if (Serial.available())
BTSerial.write(Serial.read());
}