Long life powering of remote Xbee

  • Thread starter Thread starter DanielMRV
  • Start date Start date
  • Tags Tags
    Life
AI Thread Summary
The discussion revolves around powering a remote Xbee sensor for long-term operation while minimizing battery consumption. Key strategies include utilizing sleep modes to reduce power draw, with suggestions to implement a micropower oscillator that can significantly lower current usage. Research into the Xbee's sleep current, which is reportedly in the microamp range, is recommended to enhance efficiency. Additionally, using a switching DC-DC power supply is advised for better energy extraction from batteries compared to linear regulators. The conversation emphasizes the importance of optimizing power management to extend battery life for the wireless sensor application.
DanielMRV
Messages
3
Reaction score
0
I am working on a wireless sensor application at my internship. The sensor network is working, and I am using two Xbee radios, one at the sensing end and the other at the receiving end which routes the information into a central MCU.
The issue is, the sensing radio needs to be standalone and thus will run off of a battery. As of right now, we are seeing about 30-40mA being drawn from the circuit, running off of a 5V power supply that I am acquiring from an Arduino for prototyping convenience. The device needs to be able to operate alone for a long period of time, as we would rather not force our clients to change the battery every couple of weeks.
I have very little knowledge of battery options out there. My question is, what is the best way to power a remote sensing circuit and allow for minimal power consumption so that it may be powered for as long as possible?
 
Engineering news on Phys.org
DanielMRV said:
I am working on a wireless sensor application at my internship. The sensor network is working, and I am using two Xbee radios, one at the sensing end and the other at the receiving end which routes the information into a central MCU.
The issue is, the sensing radio needs to be standalone and thus will run off of a battery. As of right now, we are seeing about 30-40mA being drawn from the circuit, running off of a 5V power supply that I am acquiring from an Arduino for prototyping convenience. The device needs to be able to operate alone for a long period of time, as we would rather not force our clients to change the battery every couple of weeks.
I have very little knowledge of battery options out there. My question is, what is the best way to power a remote sensing circuit and allow for minimal power consumption so that it may be powered for as long as possible?

Welcome to the PF.

One approach is to "sleep" your sensor circuit for the majority of the time, and only "wake up" to do the sensing and transmit the data for a very short time. This works well if the data are not changing very quickly. What is your sleep current? Can you design the circuit to be off or asleep most of the time? What would be the wake-up time?

To do this, you use a micropower oscillator/counter, which trips the wake-up signal or powers up the circuit. I've built such a circuit that only draws about 1uA, which let's a small radio sensor device last for about a year on two AA batteries...

You can also Google micropower circuits to learn more... :smile:
 
berkeman said:
Welcome to the PF.

One approach is to "sleep" your sensor circuit for the majority of the time, and only "wake up" to do the sensing and transmit the data for a very short time. This works well if the data are not changing very quickly. What is your sleep current? Can you design the circuit to be off or asleep most of the time? What would be the wake-up time?

To do this, you use a micropower oscillator/counter, which trips the wake-up signal or powers up the circuit. I've built such a circuit that only draws about 1uA, which let's a small radio sensor device last for about a year on two AA batteries...

You can also Google micropower circuits to learn more... :smile:
I am currently researching sleep modes for the Xbee series 2. Most people claim that it has a sleep current in the micro amp range. Should definitely help save power.

I also need to research efficiency on devices like this: https://www.sparkfun.com/products/8248
I am wondering if using a converter device such as that will have a significant impact on the life of the battery.
 
DanielMRV said:
I am currently researching sleep modes for the Xbee series 2. Most people claim that it has a sleep current in the micro amp range. Should definitely help save power.

I also need to research efficiency on devices like this: https://www.sparkfun.com/products/8248
I am wondering if using a converter device such as that will have a significant impact on the life of the battery.

Yes, using a switching DC-DC power supply will let you get most of the energy out of the battery, and will generally be more efficient than using a linear regulator. I'd recommend doing a boost regulator off of a 2-cell battery pack to make your 5V. You can use the 2-cell voltage directly (3.2V-1.6V over the life of an alkaline battery) to power the micropower oscillator+counter circuit, and only power up the 5V when the counter expires. (that's for if you are sleeping by powering everything else off)

If you want to use sleep mode for the whole circuit instead, it's best to not run the DC-DC while stuff is asleep -- it just wastes power. In that case, you can stack more batteries and use a low dropout linear regulator, since you only draw your main power infrequently.
 
I've used "Change-of-State" mode for radio telemetry remotes.

A huge time saving facility is when the system allows 'change of state' transmissions i.e. should an input change from off to on then only does a transmission take place.

Planning Transmission Rates

Are you using Change Detection Mode in your remote radio?

Change detection as the word itself says detects change of state. We can monitor one or more digital I/O pins for change of state. A sample is transmitted whenever this change of state occurs. In change detection sampling, a request is made to send a sample of data when ever there is a change in state at one or more digital I/O pins.

Sampling Data from XBee Radio in Change Detection Mode
 
Very basic question. Consider a 3-terminal device with terminals say A,B,C. Kirchhoff Current Law (KCL) and Kirchhoff Voltage Law (KVL) establish two relationships between the 3 currents entering the terminals and the 3 terminal's voltage pairs respectively. So we have 2 equations in 6 unknowns. To proceed further we need two more (independent) equations in order to solve the circuit the 3-terminal device is connected to (basically one treats such a device as an unbalanced two-port...
suppose you have two capacitors with a 0.1 Farad value and 12 VDC rating. label these as A and B. label the terminals of each as 1 and 2. you also have a voltmeter with a 40 volt linear range for DC. you also have a 9 volt DC power supply fed by mains. you charge each capacitor to 9 volts with terminal 1 being - (negative) and terminal 2 being + (positive). you connect the voltmeter to terminal A2 and to terminal B1. does it read any voltage? can - of one capacitor discharge + of the...
Thread 'Weird near-field phenomenon I get in my EM simulation'
I recently made a basic simulation of wire antennas and I am not sure if the near field in my simulation is modeled correctly. One of the things that worry me is the fact that sometimes I see in my simulation "movements" in the near field that seems to be faster than the speed of wave propagation I defined (the speed of light in the simulation). Specifically I see "nodes" of low amplitude in the E field that are quickly "emitted" from the antenna and then slow down as they approach the far...
Back
Top