I have an issue when trying to get data to my xbee connected to an Arduino Arduino Wireless SD Shield, not recivo data, this is my code.
void setup() {
Serial.begin(9600); // opens serial port, sets data rate to 9600 bps
}
void loop() {
if (Serial.available() >0) {
byte temp= Serial.read();
Serial.print(temp);
}
}
I connect the XBee to a plate and see that XCTU and receipt data, but using the Arduino UNO and Arduino Wireless SD Shield does not work I do not get anything, please aid that could be wrong?
I am sending data from another xbee connected to a PIC 16F877A using a 9600 baud rate on both sides.
Please help me.. Thanks.
This images: