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
- Host: GitHub
- URL: https://github.com/pmwisdom/cordova-battery
- Owner: pmwisdom
- Created: 2015-04-02T19:28:21.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2015-04-17T17:54:18.000Z (about 11 years ago)
- Last Synced: 2023-02-26T11:56:38.594Z (over 3 years ago)
- Language: Java
- Size: 168 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
});
````