XBee 900HP Module range and questions.
markuster
Posts: 184
Hi,
Just to know if is it true that the range of this XBee 900HP Module is
9 miles using a dipole antenna.
The second question:
I need to turn on and off a motor with a pump ( about 4 miles distance ) but I would like to add a current sensor
near to the motor to know if the motor is really working sending back the current consuption
using the second XBee 900HP Module.
The motor is big 110 volts 25 amp.
But my question is you have some idea about the materials I need:
2 x XBee 900HP Module.( parallax item)
2 x dipole antenna ( parallax item)
2 x basic stamp ( parallax item)
1 x current sensor ( sparkfun item)
1 x serial display to read the current consuption.( parallax item)
I think that a current sensor like this could work:
https://www.sparkfun.com/products/11005
Do you think those items are enough adn do you know if the XBee 900HP Module
is compatible with the Basic Stamps , Do I need and adapter for the XBee 900HP Module?
Thanks,
.
Just to know if is it true that the range of this XBee 900HP Module is
9 miles using a dipole antenna.
The second question:
I need to turn on and off a motor with a pump ( about 4 miles distance ) but I would like to add a current sensor
near to the motor to know if the motor is really working sending back the current consuption
using the second XBee 900HP Module.
The motor is big 110 volts 25 amp.
But my question is you have some idea about the materials I need:
2 x XBee 900HP Module.( parallax item)
2 x dipole antenna ( parallax item)
2 x basic stamp ( parallax item)
1 x current sensor ( sparkfun item)
1 x serial display to read the current consuption.( parallax item)
I think that a current sensor like this could work:
https://www.sparkfun.com/products/11005
Do you think those items are enough adn do you know if the XBee 900HP Module
is compatible with the Basic Stamps , Do I need and adapter for the XBee 900HP Module?
Thanks,
.
Comments
As for range that is the specification from Digi and I have not yet had the opportunity to put it to the test, though where I live (farmland) I could probably at least test it for several miles. Nonetheless as I have explained to others you must remember that while the internal protocol of the XBee Module ensures that the data gets through uncorrupted, it cannot verify that the data has been received. You must add your own higher level protocol that ensures commands sent are received and allow a timeout for lack of communication which can safely handle shutting down equipment if need be. It is easy to cause damage to a system if you lose control and have not accounted for that in your safety routines.
Chris :
I don't understand why a Propeller is better than a Basic Stamp for this application.
Could you explain please?
Thanks
The Propeller microcontroller, unlike most others, has multiple cores and can execute multiple programs at the same time. It can send and receive serial data at full duplex (the BASIC Stamp is limited to half duplex) and can receive this data even if it is doing other things at the same time. This makes the Propeller extremely useful in situations where it is critical to be able to do multiple tasks without interrupts or multitasking. Interrupts do just that, they interrupt the main code to execute a routine, picking back up once that routine is complete. Multitasking is time sharing as is similar in that something may get missed.
Whenever there's the potential for safety or damage to equipment or property it is important to re-evaluate the control system and to implement sufficient safety protocol into the hardware and software.
Don't get me wrong the BASIC Stamp is quite a capable microcontroller and I personally have made it do things others said couldn't be done. But in this case I would say the Propeller is the better solution.
Of course if the job need speed I think the propeller will be the solution.
But I thought that Basic Stamp could work better near a big motor since it works at 5 volts.
Propeller doesn't have something like a noise supresor or noise filter , just more speed and multitasking.
And I think that a faster and mutitasking micro. has the same noise problem than a Basic Stamp .
Your opinion about the noise will be usefull , thanks
I hope this helps.
Thanks Chris,
This is really helpful.
Is it possible to get my hands on a hard copy of this manual?
By the time I can remember where I put that download I could have pulled the manual off the shelf and be reading what I need to know. Some old dogs do eventually begin having problems 'remembering' all the new tricks they have learned.<sad grin>
Tim
The manual for each XBee Module we carry is linked on the product page to the actual file on the Digi website, that way you're always getting the most up to date manual. I just went to the first XBee product on our website and went to additional resources and selected Product Documentation. I knew the XBee had an internal buffer so I did a quick search of the PDF document for 'buffer' and found that. I hope this helps.