-
You Reply: Hi,
You should set the same Serial baud rate of the two XBee.(usually the new xbee is 9600) Also, you can see the tutorial from Phoebe. The tutorial can teach you how to set the Serial baud rate. There are two test codes you can refer. Download the two codes to Arduino UNO and XBee Shield separately. XBee Shield board can select Arduino Duemilanove w/ ATmege 328 in Arduino 1.0.1.
notice:When you download code to board, you should take off the XBee. Then take on it after finish. And you should open two new windows to download codes.
//send code
void setup()
{
Serial.begin(9600);
}
void loop()
{
Serial.print("wireless");
Serial.println();
delay(500);
}
//receive code
void setup()
{
Serial.begin(9600);
}
void loop()
{
if(Serial.available()){
Serial.write(Serial.read());
}
}
if test is succeed , you can see the same results from two serial monitors.
Hope you can succeed. I'm sorry for my poor English. 
-
You Reply: Hello
Here is a picture of connection for you. The pins for you to use on Romeo are the same as the ones used on UNO in the picture.
[img]
-
You Reply: Hi,
The screws you got are right. You can find that 4*10 ones are the most. They are used to connect servos to servo stand. Each servo needs 4 screws and nuts.
And the 3*8 screws are used to fix the servo to the body and thighs.
Last, 3*5 or you said 3*3 ones are used to connect the servo stands.
-
You Reply: Hi,
The screws you got are right. You can find that 4*10 ones are the most. They are used to connect servos to servo stand. Each servo needs 4 screws and nuts.
And the 3*8 screws are used to fix the servo to the body and thighs.
Last, 3*5 or you said 3*3 ones are used to connect the servo stands.
-
You Reply: Hi,
The screws you got are right. You can find that 4*10 ones are the most. They are used to connect servos to servo stand. Each servo needs 4 screws and nuts.
And the 3*8 screws are used to fix the servo to the body and thighs.
Last, 3*5 or you said 3*3 ones are used to connect the servo stands.
-
You Reply: Hi, Wednesday,
The screws used to join the thigh should be the second type from left. You can also use those whose diameter is 2mm to fix.
Hope to help you!