Code Monkey home page Code Monkey logo

battery-jarvis's People

Contributors

mayankpratap avatar npcoder2k14 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

battery-jarvis's Issues

Using `/sys/class/power_supply/*/capacity` instead of `charge_now`

Bug

In recent Linux releases, the /sys/class/power_supply/*/charge_now file no longer exists. I don't seem to find a corresponding article, but seeing https://docs.kernel.org/power/power_supply_class.html#attributes-properties.

We can tell that file was probably reduced to remove confusion, as charge_* are meant to contain capacity in µAh only.

Eitherway, currently this fails at:

FileNotFoundError: [Errno 2] No such file or directory: "/sys/class/power_supply/BAT0/charge_now"

charge_now_file="/sys/class/power_supply/"+folder+"/charge_now"
charge_full_file="/sys/class/power_supply/"+folder+"/charge_full"
charge_status_file="/sys/class/power_supply/"+folder+"/status"
charge_now=open(charge_now_file)
charge_full=open(charge_full_file)
charge_status=open(charge_status_file)
charge_now_content=charge_now.read()

Solution

Using /sys/class/power_supply/*/capacity if /sys/class/power_supply/*/charge_now is not found.

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.