Giter Site home page Giter Site logo

catalinmiron / react-native-battery-status-ios Goto Github PK

View Code? Open in Web Editor NEW

This project forked from rhaker/react-native-battery-status-ios

0.0 3.0 0.0 109 KB

This is a wrapper for react native that checks the battery status for ios. Gets the percent level or turns monitoring off.

Objective-C 73.07% JavaScript 26.93%

react-native-battery-status-ios's Introduction

react-native-battery-status-ios

This is a wrapper for react-native that gives the battery status of a device. The options are get level (returns percent) or turn off battery monitoring. This is for ios only.

Add it to your project

npm install react-native-battery-status-ios --save

In XCode, in the project navigator, right click Libraries ➜ Add Files to [your project's name]

Go to node_modules ➜ react-native-battery-status-ios and add RNBatteryStatus.xcodeproj

In XCode, in the project navigator, select your project. Add libRNBatteryStatus.a to your project's Build Phases ➜ Link Binary With Libraries

Click RNBatteryStatus.xcodeproj in the project navigator and go the Build Settings tab. Make sure 'All' is toggled on (instead of 'Basic'). Look for Header Search Paths and make sure it contains both $(SRCROOT)/../react-native/React and $(SRCROOT)/../../React - mark both as recursive.

Run your project (Cmd+R)

Setup trouble?

If you get stuck, take a look at Brent Vatne's blog. His blog is my go to reference for this stuff.

Api Setup

var React = require('react-native');

var { NativeModules } = React;

var { RNBatteryStatus } = NativeModules;

RNBatteryStatus.batteryStatus(

"getLevel", // getLevel, turnOff

function errorCallback(results) {

    console.log('JS Error: ' + results['errMsg']);

},

function successCallback(results) {

    console.log('JS Success: ' + results['successMsg']);

}

);

Additional Notes

Calling "getLevel" automatically turns on battery monitoring (if it was turned off). The results['successMsg'] for the typical use-case will return a string that includes the percent level (eg. 32.00002). You can parse the string in JavaScript to use the value in your code.

Error Callback

The following will cause an error callback (use the console.log to see the specific message):

  1. Parameter not "getLevel" or "turnOff"

  2. The device is plugged in.

  3. Battery level is unknown. This could result from running in the simulator or because battery monitoring has been turned off.

Acknowledgements

Special thanks to Brent Vatne for his posts on creating a react native packager. Some portions of this code have been based on answers from stackoverflow. This package also owes a special thanks to the tutorial by Jay Garcia at Modus Create on how to create a custom react native module.

react-native-battery-status-ios's People

Watchers

 avatar  avatar  avatar

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.