Hi Everyone,
I tried looking everywhere for a possible solution but I haven't been able to find a solution.
Error Code
avrdude: stk500_getsync(): not in sync: resp=0x00
Hold-Shift: avrdude: usbdev_open(): did not find any USB device "usb"
int led = 13;
void setup() {
Serial.begin(57600);
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
I've successfully updated the code above (Without "Serial.begin(57600)") via FTDI Basic Breakout 3.3V so I know the Arduino Fio is functional. I'm only having troubles getting the XBees to communicate.
Setup
Arduino Fio
XBee Series 1 Wire Antenna x 2
XBee Explorer USB
Using FioXBeeConfigTool to Configurate the XBee Modules
Programming XBee (Base)
- Baud Rate: 57600 (for ATmega328)
- Mode: Programming Radio
- PAN ID: 3332
- MY ID: 0000
- DL ID: FFFF
- XBee Firmware: 10CD (Tried 10ED (latest firmware))
Arduino Fio Xbee (Remote)
- Baud Rate: 57600 (for ATmega328)
- Mode: Arduino Fio Radio
- PAN ID: 3332
- MY ID: 0001
- DL ID: 0000
- XBee Firmware: 10CD (Tried 10ED (latest firmware))
When I sent "+++", both XBee respond.
Device Manager - USB Serial Port (COM1)
- Bits per Second: 57600 (Tried 9600 too)
- Set RTS On Close: CHECKED (Tried UNCHECKED)
I've tried setting the XBee Settings manually via X-CTU but doesn't work either.
Setup Behavior - Arduino Fio Powered With USB
Without XBee Attached:
CHG - on
ON - off
LED13 (led near D13) - blinks
With XBee Attached:
CHG - on
ON - on
LED13 (led near D13) - off
Please help
Thanks