This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

Recipe for long battery life using nRF51822?

I would like to create wearable fitness based applications/hardware using nRF51822. But i am not sure how to get the fullest of power down modes in the chip. For example, i am amazed by the MiBand battery life with over a month without charging. How to do you keep monitoring accelerometer readings; log them if any change and go to sleep if no change; turn off bluetooth radio if not paired to phone ? and only wake up during a Bluetooth search. Could anybody explain how i can achieve this using nRF51822?

Parents
  • Vidar is correct on the accelerometer, all modern ones provide a method to generate an interrupt when a threshold is exceeded. Fortunately they consume very little power - some are so low you can actually power it from a GPIO pin if you wish.

    I suggest you build your prototype to focus on your algorithms before being overly concerned with battery life. You may be surprised just how hard the accelerometer processing is to yield the data you wish - you may not even get to the point of optimizing for battery life!

Reply
  • Vidar is correct on the accelerometer, all modern ones provide a method to generate an interrupt when a threshold is exceeded. Fortunately they consume very little power - some are so low you can actually power it from a GPIO pin if you wish.

    I suggest you build your prototype to focus on your algorithms before being overly concerned with battery life. You may be surprised just how hard the accelerometer processing is to yield the data you wish - you may not even get to the point of optimizing for battery life!

Children
No Data
Related