I downloaded yesterday the patch update in order to communicate through the SoftwareSerial library, however, though I have configured the radios as specified, I cannot get them to talk to each other. I would like to know if there are any additional settings that need to be applied, other then setting up MY addresses and, enabling API mode.
The begin and setSerial functions are identical. In this case you are
setting software serial, then setting it to hardware serial, so you never
use software serial. You can use one but not both. So to use software serial
xbee.setSerial(nss);
If hardware serial then
xbee.setSerial(Serial)
Always call begin on your serial object first, whether software or hardware
On Sat, Oct 20, 2012 at 4:37 PM, Leonard Corradine <lacorrad...@gmail.com>wrote:
> I downloaded yesterday the patch update in order to communicate through
> the SoftwareSerial library, however, though I have configured the radios as
> specified, I cannot get them to talk to each other. I would like to know if
> there are any additional settings that need to be applied, other then
> setting up MY addresses and, enabling API mode.
> --
> You received this message because you are subscribed to the Google Groups
> "xbee-api" group.
> To view this discussion on the web visit
> https://groups.google.com/d/msg/xbee-api/-/yL7vrraIm-sJ.
> To post to this group, send email to xbee-api@googlegroups.com.
> To unsubscribe from this group, send email to
> xbee-api+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/xbee-api?hl=en.
> To post to this group, send email to xbee-api@googlegroups.com.
> To unsubscribe from this group, send email to
> xbee-api+unsubscribe@googlegroups.com.
> For more options, visit this group at
> http://groups.google.com/group/xbee-api?hl=en.