EmilAlipiev / sensors

Reactive mobile device sensors plugin for iOS, Android, & UWP. Support sensors - accelerometer, ambient light, barometer, compass, gyroscope, magnetometer, pedometer, and proximity

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

ACR Reactive Sensors Plugin for Xamarin & Windows

Easy to use, cross platform, REACTIVE Sensor Plugin for iOS, Android, and Windows UWP

NuGet

Change Log - Feb 12, 2017

PLATFORMS

  • PCL Profile 259 (use v1.0)
  • NET Standard (use v2.0)
  • Android 4.3+
  • iOS 7+
  • Windows UWP
  • Windows Core IoT (ADXL 345 Accelerometer)

SUPPORTED SENSORS

  • Accelerometer
  • Ambient Light
  • Barometer
  • Compass
  • Gyroscope
  • Magnetometer
  • Pedometer
  • Proximity

SETUP

Be sure to install the Plugin.Sensors nuget package in all of your main platform projects as well as your core/PCL project

NuGet

iOS

If you plan to use the pedometer on iOS, you need to add the following to your Info.plist

<dict>
	<key>NSMotionUsageDescription</key>
	<string>Using some motion</string>
</dict>

UWP Core IoT

There are two providers in the UWP library to support an ADXL345 accelerometer sensor via I2C or SPI To use them:

CrossSensors.Accelerometer = new Adxl345.I2cAccelerometer();

// or
CrossSensors.Accelerometer = new Adxl345.SpiAccelerometer();

HOW TO USE BASICS

// discover some devices
CrossSensors.Accelerometer
CrossSensors.Gyroscope
CrossSensors.Magnetometer.WhenReadingTaken().Subscribe(reading => {});

About

Reactive mobile device sensors plugin for iOS, Android, & UWP. Support sensors - accelerometer, ambient light, barometer, compass, gyroscope, magnetometer, pedometer, and proximity

License:MIT License


Languages

Language:C# 99.6%Language:Batchfile 0.4%