element14 Community
element14 Community
    Register Log In
  • Site
  • Search
  • Log In Register
  • About Us
  • Community Hub
    Community Hub
    • What's New on element14
    • Feedback and Support
    • Benefits of Membership
    • Personal Blogs
    • Members Area
    • Achievement Levels
  • Learn
    Learn
    • Ask an Expert
    • eBooks
    • element14 presents
    • Learning Center
    • Tech Spotlight
    • STEM Academy
    • Webinars, Training and Events
    • Learning Groups
  • Technologies
    Technologies
    • 3D Printing
    • FPGA
    • Industrial Automation
    • Internet of Things
    • Power & Energy
    • Sensors
    • Technology Groups
  • Challenges & Projects
    Challenges & Projects
    • Design Challenges
    • element14 presents Projects
    • Project14
    • Arduino Projects
    • Raspberry Pi Projects
    • Project Groups
  • Products
    Products
    • Arduino
    • Avnet Boards Community
    • Dev Tools
    • Manufacturers
    • Multicomp Pro
    • Product Groups
    • Raspberry Pi
    • RoadTests & Reviews
  • Store
    Store
    • Visit Your Store
    • Choose another store...
      • Europe
      •  Austria (German)
      •  Belgium (Dutch, French)
      •  Bulgaria (Bulgarian)
      •  Czech Republic (Czech)
      •  Denmark (Danish)
      •  Estonia (Estonian)
      •  Finland (Finnish)
      •  France (French)
      •  Germany (German)
      •  Hungary (Hungarian)
      •  Ireland
      •  Israel
      •  Italy (Italian)
      •  Latvia (Latvian)
      •  
      •  Lithuania (Lithuanian)
      •  Netherlands (Dutch)
      •  Norway (Norwegian)
      •  Poland (Polish)
      •  Portugal (Portuguese)
      •  Romania (Romanian)
      •  Russia (Russian)
      •  Slovakia (Slovak)
      •  Slovenia (Slovenian)
      •  Spain (Spanish)
      •  Sweden (Swedish)
      •  Switzerland(German, French)
      •  Turkey (Turkish)
      •  United Kingdom
      • Asia Pacific
      •  Australia
      •  China
      •  Hong Kong
      •  India
      •  Korea (Korean)
      •  Malaysia
      •  New Zealand
      •  Philippines
      •  Singapore
      •  Taiwan
      •  Thailand (Thai)
      • Americas
      •  Brazil (Portuguese)
      •  Canada
      •  Mexico (Spanish)
      •  United States
      Can't find the country/region you're looking for? Visit our export site or find a local distributor.
  • Translate
  • Profile
  • Settings
Raspberry Pi
  • Products
  • More
Raspberry Pi
Raspberry Pi Forum PowerBoost Low Battery Output to Safely Shutdown Raspberry Pi
  • Blog
  • Forum
  • Documents
  • Quiz
  • Events
  • Polls
  • Files
  • Members
  • Mentions
  • Sub-Groups
  • Tags
  • More
  • Cancel
  • New
Join Raspberry Pi to participate - click to join for free!
Featured Articles
Announcing Pi
Technical Specifications
Raspberry Pi FAQs
Win a Pi
Raspberry Pi Wishlist
Actions
  • Share
  • More
  • Cancel
Forum Thread Details
  • State Verified Answer
  • Replies 20 replies
  • Answers 11 answers
  • Subscribers 670 subscribers
  • Views 4769 views
  • Users 0 members are here
  • gpio
  • raspberry_pi
  • adafruit powerboost 1000c
Related

PowerBoost Low Battery Output to Safely Shutdown Raspberry Pi

andywest
andywest over 7 years ago

I've got an Adafruit PowerBoost 1000C and I'd like to connect the LBO (Low Battery Output) to a Raspberry Pi GPIO pin to detect low battery and shut down safely. I'm using a 2500 mAh battery.

 

What I think I want is this:

 

PowerBoost LBO -> diode -> resistor -> GPIO

 

I have a few questions about this:

 

  1. I'm using the diode to prevent current flow back into LBO, which I've read can cause the low battery LED to light up at the wrong time. I have some 1N914 / 1N4148 switching diodes. Are these appropriate for the task?
  2. What resistor value do I want to use? I think Ohm's law is relevant here, but I'm not totally sure what values to plug in and why.
  3. Is it better to have the diode before the resistor like above, or should I reverse those? Does it matter?

 

I saw a recommendation not to source or sink more than 0.5mA into an input pin. In that case, it seems like a 10Kohm resistor would be appropriate (4.2V / 10000Ω = 0.00042A) since 4.2 is the voltage of a fully-charged LiPo and 0.42mA is close to 0.5mA. Am I thinking about this correctly?

  • Sign in to reply
  • Cancel
Parents
  • shabaz
    0 shabaz over 7 years ago

    Hi Andy,

     

    You're right, some resistor based circuit is needed to get that 4.2V down to a usable value. You can do it with a potential divider circuit, e.g. have a 10k or 12k resistor, and put a 33k resistor in series. Connect one end of the 10k or 12k resistor to the LBO pin (which is being pulled high as you say, up to 4.2V), and connect the other end of the 33k resistor to ground. The junction between the two resistors can be directly connected to the Pi (first confirm with a multimeter that you see a voltage of around 3.3V at the junction). No need for any other resistors/diodes etc hopefully. If you have a multimeter, you can check that the junction voltage drops to close to 0V when the battery voltage reduces. Provided it goes to less than 0.8V, the Pi will detect that as a valid logic '0'. The exact voltage levels I'm unsure of, but definitely by being under 0.8V, the Pi should see the pin as a logic '0'.

    One thing to bear in mind is that some small amount of current will flow through the resistors even when the system is off, so the battery will slowly drain - but it could be low enough not to worry, depending on your use-case. There are ways around that, but they involve more circuitry (a MOSFET) or tapping off the connection elsewhere.But hopefully it will work well enough to get you going for now. There are some input/output interface circuit ideas by the way for the Pi here: Raspberry Pi GPIO Explained

     

    EDIT: I just checked the IC datasheet, and the datasheet for the BJT on that board (I should have done that first), and looks like the internal resistor is about 47k. So, the values above are too high. Please ignore it all.

    Here is an easier approach that will work and needs just one resistor.

    Connect a 100k resistor between LBO and ground. Then connect LBO to the Pi. You're all set.

    • Cancel
    • Vote Up +5 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
  • andywest
    0 andywest over 7 years ago in reply to shabaz

    Thanks for the great explanation, shabaz! That sounds really simple.

     

    Regarding the current flow when the system is off, I've connected EN and GND with a switch. I have confirmed that it toggles the power LED when I press it. Will the current still flow, even when I turn off the power this way?

     

    (The idea is that the Pi will be safely shut down in software (either manually or by monitoring LBO pin), and then the "hard" shutdown with the switch will cut the power to the Pi. Then the Pi can be started again by using the switch.)

     

    This conversation has inspired me to seek out some introductory electronics books so I can start answering these questions for myself. image

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Reply
  • andywest
    0 andywest over 7 years ago in reply to shabaz

    Thanks for the great explanation, shabaz! That sounds really simple.

     

    Regarding the current flow when the system is off, I've connected EN and GND with a switch. I have confirmed that it toggles the power LED when I press it. Will the current still flow, even when I turn off the power this way?

     

    (The idea is that the Pi will be safely shut down in software (either manually or by monitoring LBO pin), and then the "hard" shutdown with the switch will cut the power to the Pi. Then the Pi can be started again by using the switch.)

     

    This conversation has inspired me to seek out some introductory electronics books so I can start answering these questions for myself. image

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
Children
  • cmelement14
    0 cmelement14 over 7 years ago in reply to andywest

    Yes, still some small current flows. Even your switch circuit connected EN and GND has a small current flowing as well.

    • Cancel
    • Vote Up +4 Vote Down
    • Sign in to reply
    • Verify Answer
    • Cancel
  • shabaz
    0 shabaz over 7 years ago in reply to andywest

    Hi Andy,

     

    That's perfect, then you're ok, if you're using the EN pin according to the datasheet http://www.ti.com/lit/ds/symlink/tps61090.pdf  it should disconnect the battery (some leakage will be present), so you'll get long life without it discharging significantly.

    jw0752 has a list of good books by the way, it is here: I Want to Do Electronics!  Where do I start?

    • Cancel
    • Vote Up +3 Vote Down
    • Sign in to reply
    • Verify Answer
    • Reject Answer
    • Cancel
element14 Community

element14 is the first online community specifically for engineers. Connect with your peers and get expert answers to your questions.

  • Members
  • Learn
  • Technologies
  • Challenges & Projects
  • Products
  • Store
  • About Us
  • Feedback & Support
  • FAQs
  • Terms of Use
  • Privacy Policy
  • Legal and Copyright Notices
  • Sitemap
  • Cookies

An Avnet Company © 2025 Premier Farnell Limited. All Rights Reserved.

Premier Farnell Ltd, registered in England and Wales (no 00876412), registered office: Farnell House, Forge Lane, Leeds LS12 2NE.

ICP 备案号 10220084.

Follow element14

  • X
  • Facebook
  • linkedin
  • YouTube