(Sorry, I think that this post should be in the hardware troubleshooting)
I'm doing a project with 5 Arduino Uno+XBee Pro.
When i upload a program to arduino it works perfet but my problem begin when i conect my xbee shield with the xbee pro module.
The arduino looks like it is all the time inizializing (blinking very quikly the led) and don't star the program.
If i upload the program with the xbee shield conected it works fine but it stops work when i disconnect and conect the arduino from the computer.
One thing more peculiar is that one of the arduino alwais works well.
I'm using Xbee Pro modules (Ref: XBP24 -AWI 001-).
It can be a problem of incompatibility with XBee Series I have?
I think yes but i'm not sure because i don't know how can check it
2)No, only the xbee shield with the xbee module.
3)For example the blink programme (but not work with any else)
void setup() {
// initialize the digital pin as an output.
// Pin 13 has an LED connected on most Arduino boards:
pinMode(13, OUTPUT);
}
void loop() {
digitalWrite(13, HIGH); // set the LED on
delay(1000); // wait for a second
digitalWrite(13, LOW); // set the LED off
delay(1000); // wait for a second
}
4)I expect that the led included in the arduino, blink each second. And when i upload the programme works fine but when i disconect and conect the arduino the led flashing quickly like if the arduino was starting (It is like you are repeatedly pressing the reset button) .
Without the xbee module all the programs works perfect