sensors_plus 1.3.0 copy "sensors_plus: ^1.3.0" to clipboard
sensors_plus: ^1.3.0 copied to clipboard

outdated

Flutter plugin for accessing accelerometer, gyroscope, and magnetometer sensors.

Sensors Plus #

Flutter Community: sensors_plus

sensors_plus pub package

build

A Flutter plugin to access the accelerometer, gyroscope, and magnetometer sensors.

Platform Support #

Android iOS MacOS Web Linux Windows
✔️ ✔️ ✔️

Usage #

To use this plugin, add sensors_plus as a dependency in your pubspec.yaml file.

This will expose four classes of sensor events through four different streams.

  • AccelerometerEvents describe the velocity of the device, including the effects of gravity. Put simply, you can use accelerometer readings to tell if the device is moving in a particular direction.
  • UserAccelerometerEvents also describe the velocity of the device, but don't include gravity. They can also be thought of as just the user's affect on the device.
  • GyroscopeEvents describe the rotation of the device.
  • MagnetometerEvents describe the ambient magnetic field surrounding the device. A compass is an example usage of this data.

Each of these is exposed through a BroadcastStream: accelerometerEvents, userAccelerometerEvents, gyroscopeEvents, and magnetometerEvents, respectively.

Example #

import 'package:sensors_plus/sensors_plus.dart';

accelerometerEvents.listen((AccelerometerEvent event) {
  print(event);
});
// [AccelerometerEvent (x: 0.0, y: 9.8, z: 0.0)]

userAccelerometerEvents.listen((UserAccelerometerEvent event) {
  print(event);
});
// [UserAccelerometerEvent (x: 0.0, y: 0.0, z: 0.0)]

gyroscopeEvents.listen((GyroscopeEvent event) {
  print(event);
});
// [GyroscopeEvent (x: 0.0, y: 0.0, z: 0.0)]

magnetometerEvents.listen((MagnetometerEvent event) {
  print(event);
});
// [MagnetometerEvent (x: -23.6, y: 6.2, z: -34.9)]

Also see the example subdirectory for an example application that uses the sensor data.

Check out our website to learn more: Plus Plugins documentation

721
likes
0
pub points
98%
popularity

Publisher

verified publisherfluttercommunity.dev

Flutter plugin for accessing accelerometer, gyroscope, and magnetometer sensors.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, sensors_plus_platform_interface, sensors_plus_web

More

Packages that depend on sensors_plus