Giter VIP home page Giter VIP logo

Comments (9)

NeonHorizon avatar NeonHorizon commented on August 21, 2024

Surely if the battery is being charged it will no longer be a low battery? I don't think its a good idea to disable the low battery shutdown as you may drain the battery too low and end up with the Pi being killed as the PowerBoost shuts off?

Anyway to do what you are asking I would guess you would want to use a different GPIO pin as an input which your solar charging circuit would toggle high or low when its charging. Then you need to change the lipopi.py script to check this and disable (or at least postpone) shutdown.

from lipopi.

robinsdl avatar robinsdl commented on August 21, 2024

What I would like the script to do is to stop the low battery shutdown if the low battery input changes state e.g. Is the battery is no longer low. To do this the script needs to monitor the low bat GPIO input and stop/reset the low battery shutdown. At the moment the script stops looking for inputs and waits the shutdown. How do I alter the script to keep looking for input changes while waiting to shutdown?

from lipopi.

NeonHorizon avatar NeonHorizon commented on August 21, 2024

OK if you check lipopi.py theres a function called lipopi_low_battery_shutdown(). What I would do is after the line time.sleep(lipopi['shutdown_wait']) add a couple of lines of code to check if the lipopi['low_battery_pin'] is high and if it is return from the function instead of continuing to the message and shutdown command. That should do what you want. Backup your SD card before testing though just in case it doesn't :)

from lipopi.

robinsdl avatar robinsdl commented on August 21, 2024

I have tried many different versions of having the code check to see if the pin goes high again without success. I must be doing something wrong. Could you please tell me what code to use.

from lipopi.

NeonHorizon avatar NeonHorizon commented on August 21, 2024

I'm not really a python guy but this looks really simple...
Have you tried:

if GPIO.input(lipopi['low_battery_pin']):
    return

from lipopi.

robinsdl avatar robinsdl commented on August 21, 2024

Yes I have tried that and it doesn't work. I don't have a lot of python experience either which is why I was asking. I will just use your original script and and add in an email notification when the battery goes low.
Thanks for the help.

from lipopi.

NeonHorizon avatar NeonHorizon commented on August 21, 2024

What do you mean by it doesnt work. Did you get an error or anything?

from lipopi.

robinsdl avatar robinsdl commented on August 21, 2024

When the code you suggested is added the script stopped working all together. I did not see any error codes however I just realised that I may not have seen them as I rebooted and then tried the script. I will need to test it again by stopping and starting the script. The unit is currently deployed to test the solar charger so it will be a few days before I can test it.

from lipopi.

NeonHorizon avatar NeonHorizon commented on August 21, 2024

Its probably worth running the script manually from the command line to test rather than from the systemd service.

from lipopi.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.