Giter Club home page Giter Club logo

rawsensors's Introduction

rawsensors

A flutter plugin that lets you access raw data from sensors

The goal of this plugin is to expose every sensors from the Android and IOS framework.

Features

The different sensor types available are exposed via the enum SensorType:

SensorType Android IOS
accelerometer TYPE_ACCELEROMETER Not implemented
temperature TYPE_AMBIENT_TEMPERATURE Not implemented
gyroscope TYPE_GYROSCOPE Not implemented
magnetometer TYPE_MAGNETIC_FIELD Not implemented
light TYPE_LIGHT Not implemented
pressure TYPE_PRESSURE Not implemented

Warning: This plugin does not support IOS for now, I would greatly appreciate some help to support IOS.

Usage

To use this plugin, add rawsensors as a dependency in your pubspec.yaml file. For example:

dependencies:
  rawsensors: 0.0.3

Example

import 'package:rawsensors/rawsensors.dart';

RawSensors.getSensorStream(SensorType.accelerometer)
  .then((Stream sensorStream) => {
    if (sensorStream != null) {
      sensorStream.listen((dynamic data) {
        print(data);
      }
    } else {
      print("No accelerometer found on device");
    }
  }));

Issues

If you have any issue, bug or feature request please open an issue.

Contribution

Contributions are welcomed, feel free to contribute if you see any improvement or you want to add new features.

License

MIT TrAyZeN

rawsensors's People

Contributors

trayzen avatar

Stargazers

 avatar  avatar Célian Raimbault avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.