react-native-compass-heading

Listener to device's compass information.

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
react-native-compass-heading
7391.4.26 months ago4 years agoMinified + gzip package size for react-native-compass-heading in KB

Readme

react-native-compass-heading
React Native module for iOS & Android to receive compass heading

Installation

$ yarn add react-native-compass-heading
$ npx pod-install

Usage

import CompassHeading from 'react-native-compass-heading';

  React.useEffect(() => {
    const degree_update_rate = 3;

    CompassHeading.start(degree_update_rate, ({heading, accuracy}) => {
      console.log('CompassHeading: ', heading, accuracy);
    });

    return () => {
      CompassHeading.stop();
    };
  }, []);

Acknowledgements

Thanks to the authors of react-native-simple-compass for inspiration