An open API service indexing awesome lists of open source software.

https://github.com/pmwisdom/cordova-battery

Very simple cordova plugin to get the current battery level for android / ios
https://github.com/pmwisdom/cordova-battery

Last synced: 17 days ago
JSON representation

Very simple cordova plugin to get the current battery level for android / ios

Awesome Lists containing this project

README

          

# Cordova-Battery
Very simple cordova plugin to get the current battery level for android / ios

To get the battery percent at that current moment run:

````javascript
window.plugins.battery.getLevel(function(level){
console.log("Got Battery Level!", level.batteryPercent);
});
````