Gyroscope
Read Gyroscope sensor data
https://github.com/NeoLSN/cordova-plugin-gyroscope
Stuck on a Cordova issue?
If you're building a serious project, you can't afford to spend hours troubleshooting. Ionic’s experts offer premium advisory services for both community plugins and premier plugins.
Installation#
- Capacitor
- Cordova
- Enterprise
$ npm install cordova-plugin-gyroscope $ npm install @ionic-native/gyroscope $ ionic cap sync
$ ionic cordova plugin add cordova-plugin-gyroscope $ npm install @ionic-native/gyroscope
Ionic Enterprise comes with fully supported and maintained plugins from the Ionic Team. Learn More or if you're interested in an enterprise version of this plugin Contact Us
#
Supported Platforms- Android
- iOS
#
Usage#
ReactLearn more about using Ionic Native components in React
#
Angularimport { Gyroscope, GyroscopeOrientation, GyroscopeOptions } from '@ionic-native/gyroscope/ngx';
constructor(private gyroscope: Gyroscope) { }
...
let options: GyroscopeOptions = { frequency: 1000}
this.gyroscope.getCurrent(options) .then((orientation: GyroscopeOrientation) => { console.log(orientation.x, orientation.y, orientation.z, orientation.timestamp); }) .catch()
this.gyroscope.watch() .subscribe((orientation: GyroscopeOrientation) => { console.log(orientation.x, orientation.y, orientation.z, orientation.timestamp); });