Thanks PaulS
Your Suggestion is very good
i deleted the Software Serial parts of the two Arduino A & B
void setup()
{
Serial.begin(57600);
Serial.println("Test");
}
void loop() // run over and over
{
if (Serial.available()>0)
{
Serial.println(Serial.read());
delay(500);
}
}
but on the ArduinoA + Xbee (Receive the temp)
it was still receive the data" 50...55...13...10...50...55...13...10..."
the correct data should be the temperature "27...27...28..." from the Arduino B +Xbee+ Sensor
because i can receive the right temperature
when i connect the Xbee +PC, and use the X-CTU to get the data
Please find the attachment
