Input Shield V2 XBee not recognized
I cannot get the XBee module to be recognized on the Input Shield V2.
I have 2 XBee modules that are both configured properly and can be read by the Digi X-CTU software when plugged into your XBee pro shield stacked directly onto my Arduino Uno board
The XBee modules can also be read when plugged into your XBee pro shield that's stacked on top of the Input Shield V2 that is in turn plugged into the Arduino.
However, if I plug the Input Shield V2 alone into the Arduino, and install the XBee module on it, the XBee module is not recognized.
I am probably doing something wrong, but haven't been able to find any detailed information about the proper procedure for getting this to work. Any help would be appreciated.
I have 2 XBee modules that are both configured properly and can be read by the Digi X-CTU software when plugged into your XBee pro shield stacked directly onto my Arduino Uno board
The XBee modules can also be read when plugged into your XBee pro shield that's stacked on top of the Input Shield V2 that is in turn plugged into the Arduino.
However, if I plug the Input Shield V2 alone into the Arduino, and install the XBee module on it, the XBee module is not recognized.
I am probably doing something wrong, but haven't been able to find any detailed information about the proper procedure for getting this to work. Any help would be appreciated.
2016-08-03 02:03:56 The wiki about how to set Veyron Driver through Serial port has not shown all the steps, poor wiki I'd like to point it out.
So I tested different ways to do the setting through a UNO(TX-RX/TX both worked), FTDI adapter(RX-TX, TX-RX), USB-TTL adapter (TX-TX, RX-RX).
So I tested different ways to do the setting through a UNO(TX-RX/TX both worked), FTDI adapter(RX-TX, TX-RX), USB-TTL adapter (TX-TX, RX-RX).
- UNO, RX-RX, TX-TX
- Upload an empty sketch or a Blink to release the Serial port.Code: Select all
void setup() {
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
} - Connect the Serial device waiting for Serial debug.
- Open the serial port of UNO, and send Command (here I sent 1,SVS,1,1000 to run the motor)
- UNO, TX-RX & RX-TX
- Upload the code below to UNO, it will send what you have input. Important: Set the Baud rate as required.Code: Select all
void setup() {
Serial.begin(57600); //initialize Serial(i.e. USB port)
}
void loop() {
while (Serial.available()) {
Serial.write(Serial.read());
}
delay(1);
}
- Wiring as above except: TX-RX & RX-TX (.Important: )
- Send the command as above.
-
Xbee USB adapter (FTDI ready) DFR0050 RX-TX, TX-RX, GND-GND as below, and you can send command as you wish.
-
USB Serial Light Adapter - Atmega8U2 (Arduino Compatible) DFR0164, RX-RX, TX-TX, GND-GND, other wiring are the same (for the reason why TX-TX, the label on PCB was not equal to hardware)
- Upload the code below to UNO, it will send what you have input. Important: Set the Baud rate as required.
- Upload an empty sketch or a Blink to release the Serial port.
2016-08-03 01:38:33 Follow up: I tested with another Serial interface module (Veyron driver, DRI0021) with the methods I mentioned above. And all worked surprisingly! Leff
2016-07-26 02:06:14 Hello jimbar99,
Sorry, do you mean this Input Shield for Arduino?
Sorry, do you mean this Input Shield for Arduino?
If so, sorry that you missed nothing, but it is normal that Xbee won't be configured on this kind of shield, since they are connected as: TX-RX; RX-TX to communicate with the board...
But I am not sure yet, if Xbee module could be found by connecting it with the shield as:
TX-TX
RX-RX
or if it would work once upload a special code for comunication with serial module:
For controller like Uno:
Code: Select all
void setup() {
Serial.begin(9600); //initialize Serial(i.e. USB port)
}
void loop() {
while (Serial.available()) {
Serial.write(Serial.read());
}
delay(1);
}
For controller like Leonardo:
Code: Select all
Leff void setup() {
Serial.begin(9600); //initialize Serial(i.e. USB port)
Serial1.begin(9600); //initialize Serial1
while (!Serial) {
; // wait for serial port to connect. Needed for native USB port only
}
}
void loop() {
while (Serial1.available()) {
Serial.write(Serial1.read());
}
while (Serial.available()) {
Serial1.write(Serial.read());
}
delay(1);
}
Xbee Shield for Arduino DFR0015