react-native-pedometer-ios-android
v0.1.0
Published
react native module for step counting on Android and IOS
Downloads
14
Readme
react-native-pedometer
react native module to count steps
Installation
npm install react-native-pedometer
Usage
import Pedometer from "react-native-pedometer";
// ...
Pedometer.isSupported().then((result) => {
if (result) {
console.log('Sensor TYPE_STEP_COUNTER is supported on this device');
const myModuleEvt = new NativeEventEmitter(NativeModules.Pedometer);
myModuleEvt.addListener('StepCounter', (data) => {
console.log('STEPS', data.steps);
});
Pedometer.startStepCounter();
} else {
console.log('Sensor TYPE_STEP_COUNTER is not supported on this device');
}
});
Contributing
See the contributing guide to learn how to contribute to the repository and the development workflow.
License
MIT