Configuration of xbee's with analog signals

I have two series one xbees one will transmit three analog signals and the other will receive them to be used in an arduino program. I have seen in tutorials and other projects that there is no configuration needed for series one xbees so I was just wondering if that’s also true for sending analog signals as well.

See the links in these threads:

https://forum.sparkfun.com/viewtopic.php?f=13&t=37159

https://forum.sparkfun.com/viewtopic.php?f=13&t=37625

You have to use the X-CTU to program the Xbees (very easy to use).

Xbees Datasheet:

http://ftp1.digi.com/support/documentat … 0982_M.pdf

Page 13-15 explains you how to do it.

Page 63 (RX (Receive) Packet: 16-bit Address) is the frame you’ll probably get at the Arduino.

but it is possible to send or receive three analog signals from one xbee right? I just want to be sure of this, I’m very new to xbees

Yes, it is possible the send the values of three XBee ADCs through the network to another XBee. Study the XBee’s document to learn how and what the data format is.

From what I read from the document and saw on different videos I need to use the PWM outputs for analog signals but there are only two. Is there a solution to this or would I be able to use the digital output pins on the receiving side?

That is a different question that has a different answer. Yes, there are only two PWM outputs so only tow XBee pins that can output a filtered analog Voltage.

Your original question is:

I have two series one xbees one will transmit three analog signals and the other will receive them to be used in an arduino program.

The way to do this is to have the remote XBee send the ADC values to the local XBee which then sends the ADC data over the serial output to the Ardiuno. There is no good reason to have the XBee output an analog Voltage just to re-digitaize it with the Ardiuno's ADC. This will just introduce addition errors.

As waltr has said, you need to use the serial. This example should help you use the ADCs with the serial:

http://www.digi.com/support/kbase/kbase … tl?id=2180

Thanks to both of you! It was a lot of help!