1.5.0 • Published 11 months ago

react-native-compass-heading v1.5.0

Weekly downloads
541
License
MIT
Repository
github
Last release
11 months ago

react-native-compass-heading

React Native module for iOS & Android to receive compass heading

Installation

npm install react-native-compass-heading

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();
    };
  }, []);

Contributing

See the contributing guide to learn how to contribute to the repository and the development workflow.

License

MIT


Made with create-react-native-library

1.5.0

11 months ago

1.4.2

1 year ago

1.4.1

2 years ago

1.3.3

2 years ago

1.3.2

2 years ago

1.4.0

2 years ago

1.3.1

2 years ago

1.3.0

3 years ago

1.2.1

3 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

5 years ago