In my case the clue was to update the xbee firmware using XCTU. I had to install WinXP via Virtualbox though and had to find an unsupported old Firmw.
const int ledPin = 13;
void setup()
{ Serial.begin(9600); pinMode(ledPin, OUTPUT);
}
void loop()
{ Serial.print('H'); digitalWrite(ledPin, HIGH); delay(1000); Serial.print('L'); digitalWrite(ledPin, LOW); delay(1000);
berndbraegelmann 1 year ago
Hi,
I've got 2 duemilanove and 2 xbee shields like you. I followed all the tutorials i found on the net but it does'nt work...
Can you share the source code?
Thanks
damienchamaret 1 year ago
In my case the clue was to update the xbee firmware using XCTU. I had to install WinXP via Virtualbox though and had to find an unsupported old Firmw.
const int ledPin = 13;
void setup()
{ Serial.begin(9600); pinMode(ledPin, OUTPUT);
}
void loop()
{ Serial.print('H'); digitalWrite(ledPin, HIGH); delay(1000); Serial.print('L'); digitalWrite(ledPin, LOW); delay(1000);
}
berndbraegelmann 1 year ago
Hi,
I've got 2 duemilanove and 2 xbee shields like you. I followed all the tutorials i found on the net but it does'nt work...
Can you share the source code?
Thanks
damienchamaret 1 year ago