All Projects → pwittchen → Reactivesensors

pwittchen / Reactivesensors

Licence: apache-2.0
Android library monitoring device hardware sensors with RxJava

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Reactivesensors

ReactiveBus
🚍 Reactive Event Bus for JVM (1.7+) and Android apps built with RxJava 2
Stars: ✭ 17 (-89.44%)
Mutual labels:  rxjava, rxandroid, rxjava2
Rxbus
🚌 The RxBus as steady as an old dog.
Stars: ✭ 334 (+107.45%)
Mutual labels:  rxjava, rxjava2, rxandroid
Rxbiometric
☝️ RxJava and RxKotlin bindings for Biometric Prompt (Fingerprint Scanner) on Android
Stars: ✭ 295 (+83.23%)
Mutual labels:  rxjava, rxjava2, rxandroid
Reactivewifi
Android library listening available WiFi Access Points and related information with RxJava Observables
Stars: ✭ 186 (+15.53%)
Mutual labels:  rxjava, rxjava2, rxandroid
Rxjavapriorityscheduler
RxPS - RxJavaPriorityScheduler - A RxJava Priority Scheduler library for Android and Java applications
Stars: ✭ 138 (-14.29%)
Mutual labels:  rxjava, rxjava2, rxandroid
Reactivenetwork
Android library listening network connection state and Internet connectivity with RxJava Observables
Stars: ✭ 2,484 (+1442.86%)
Mutual labels:  rxjava, rxjava2, rxandroid
Freezer
A simple & fluent Android ORM, how can it be easier ? RxJava2 compatible
Stars: ✭ 326 (+102.48%)
Mutual labels:  rxjava, rxjava2, rxandroid
Reactivebeacons
Android library scanning BLE beacons nearby with RxJava
Stars: ✭ 171 (+6.21%)
Mutual labels:  rxjava, rxjava2, rxandroid
Rxjava2 Operators Magician
你用不惯 RxJava,只因缺了这把钥匙 🔑 You are not used to RxJava, just because of the lack of this key.
Stars: ✭ 868 (+439.13%)
Mutual labels:  rxjava, rxjava2, rxandroid
Rxjava2 Android Samples
RxJava 2 Android Examples - Migration From RxJava 1 to RxJava 2 - How to use RxJava 2 in Android
Stars: ✭ 4,950 (+2974.53%)
Mutual labels:  rxjava, rxjava2, rxandroid
Androidbasemvp
🚀一个快速搭建MVP+RxJava2+Retrofit 基础框架,主要是封装有Http网络请求、日志、缓存、加载等待、toast、页面状态布局管理、权限、RxBus、Glide图片加载等组件,方便快速开发新项目、减少开发成本。
Stars: ✭ 184 (+14.29%)
Mutual labels:  rxjava, rxjava2, rxandroid
Android Clean Architecture Boilerplate
Apply clean architecture on Android
Stars: ✭ 141 (-12.42%)
Mutual labels:  rxjava, rxjava2, rxandroid
Rxbus
Event Bus By RxJava.
Stars: ✭ 2,126 (+1220.5%)
Mutual labels:  rxjava, rxjava2, rxandroid
Prefser
Wrapper for Android SharedPreferences with object serialization and RxJava Observables
Stars: ✭ 228 (+41.61%)
Mutual labels:  rxjava, rxjava2, rxandroid
Mvvm Architecture Android Beginners
This repository contains a sample app that implements MVVM architecture using Kotlin, ViewModel, LiveData, and etc.
Stars: ✭ 176 (+9.32%)
Mutual labels:  rxjava, rxjava2, rxandroid
Swipe
👉 detects swipe events on Android
Stars: ✭ 324 (+101.24%)
Mutual labels:  rxjava, rxjava2, rxandroid
Rxbluetooth
Android reactive bluetooth
Stars: ✭ 405 (+151.55%)
Mutual labels:  rxjava, rxjava2, rxandroid
Aiyagirl
🔥 爱吖妹纸(含 Kotlin 分支版本)——Retrofit + RxJava + MVP 架构 APP 体验代码家的干货集中营 Gank.io,福利多多,不容错过
Stars: ✭ 1,109 (+588.82%)
Mutual labels:  rxjava, rxjava2, rxandroid
Mvpframes
整合大量主流开源项目并且可高度配置化的 Android MVP 快速集成框架,支持 AndroidX
Stars: ✭ 100 (-37.89%)
Mutual labels:  rxjava, rxjava2, rxandroid
Jd Mall Master
一款高仿京东商城的UI,基于MVP的Retrofit2(okhttp3)+rxjava+dagger2+greendao+glide。该项目系仿京东商城,属于独立开发者作品,仅供参考学习,拒绝做一切商业用途,如有侵权,请告知删除
Stars: ✭ 151 (-6.21%)
Mutual labels:  rxjava, rxjava2

ReactiveSensors

Android Arsenal

Android library monitoring hardware sensors with RxJava.

Current Branch Branch Artifact Id CI Build Status Maven Central
RxJava1.x reactivesensors Android CI Maven Central
RxJava2.x reactivesensors-rx2 Android CI Maven Central
☑️ RxJava3.x reactivesensors-rx3 Android CI Maven Central

Contents

Usage

Code sample below demonstrates how to observe Gyroscope sensor.

Please note that we are filtering events occurring when sensor readings change with ReactiveSensorEvent::sensorChanged method. There's also event describing change of sensor's accuracy, which can be filtered with ReactiveSensorEvent::accuracyChanged method. When we don't apply any filter, we will be notified both about sensor readings and accuracy changes.

new ReactiveSensors(context).observeSensor(Sensor.TYPE_GYROSCOPE)
    .subscribeOn(Schedulers.computation())
    .filter(ReactiveSensorEvent::sensorChanged)
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe(new Consumer<ReactiveSensorEvent>() {
      @Override public void call(ReactiveSensorEvent event) {

        float x = event.sensorValues()[0];
        float y = event.sensorValues()[1];
        float z = event.sensorValues()[2];

        String message = String.format("x = %f, y = %f, z = %f", x, y, z);

        Log.d("gyroscope readings", message);
      }
    });
}

We can observe any hardware sensor in the same way. You can check list of all sensors in official Android documentation. To get list of all sensors available on the current device, you can use getSensors() method available in ReactiveSensors class.

Setting sampling period

Default sampling period for Flowable below is set to SensorManager.SENSOR_DELAY_NORMAL.

Flowable<ReactiveSensorEvent> observeSensor(int sensorType)

We can configure sampling period according to our needs with the following flowable:

Flowable<ReactiveSensorEvent> observeSensor(final int sensorType, final int samplingPeriodInUs)

We can use predefined values available in SensorManager class from Android SDK:

  • int SENSOR_DELAY_FASTEST - get sensor data as fast as possible
  • int SENSOR_DELAY_GAME - rate suitable for games
  • int SENSOR_DELAY_NORMAL - rate (default) suitable for screen orientation changes
  • int SENSOR_DELAY_UI - rate suitable for the user interface

We can also define our own integer value in microseconds, but it's recommended to use predefined values.

We can customize RxJava Backpressure Strategy for our flowable with method:

Flowable<ReactiveSensorEvent> observeSensor(final int sensorType, final int samplingPeriodInUs,
                                            final BackpressureStrategy strategy)

Default Backpressure Strategy is BUFFER.

Example

Exemplary application, which gets readings of various sensors is located in app directory of this repository. You can easily change SENSOR_TYPE variable to read values from a different sensor in a given samples.

Good practices

Checking whether sensor exists

We should check whether device has concrete sensor before we start observing it.

We can do it in the following way:

if (reactiveSensors.hasSensor(SENSOR_TYPE)) {
  // observe sensor
} else {
  // show error message
}

Letting it crash

We can let our subscription crash and handle situation when device does not have given sensor e.g. in the Consumer<Throwable>() implementation (if we want to return Disposable) or in the onError(throwable) method implementation of the Subscriber. Other types of errors can be handled there as well.

new ReactiveSensors(context).observeSensor(Sensor.TYPE_GYROSCOPE)
    .subscribeOn(Schedulers.computation())
    .filter(ReactiveSensorEvent::sensorChanged)
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe(new Consumer<ReactiveSensorEvent>() {
      @Override public void accept(ReactiveSensorEvent reactiveSensorEvent) throws Exception {
        // handle reactiveSensorEvent
      }
    }, new Consumer<Throwable>() {
      @Override public void accept(Throwable throwable) throws Exception {
        if (throwable instanceof SensorNotFoundException) {
          textViewForMessage.setText("Sorry, your device doesn't have required sensor.");
        }
      }
    });

Subscribing and disposing flowables

When we are using Disposables in Activity, we should subscribe them in onResume() method and dispose them in onPause() method.

Filtering stream

When we want to receive only sensor updates, we should use ReactiveSensorEvent::sensorChanged method in filter(...) method from RxJava.

When we want to receive only accuracy updates, we should use ReactiveSensorEvent::accuracyChanged method in filter(...) method from RxJava.

If we don't apply any filter, we will receive both accuracy and sensor readings updates.

Writing tests

ReactiveSensors class implements SensorsProxy interface. It allows you to create stubs or mocks for testing behavior of the sensors in your application without need of mocking SensorManager class from Android SDK accessing hardware components. Once you instantiate SensorsProxy, then you'll be allowed to mock or stub it pretty easily. Moreover, you can mock ReactiveSensorEvent, which wraps code from Android API, expose appropriate methods and does not force you to use native code accessing hardware sensors in tests, so you can foucus just on the application logic.

Other practices

See also Best Practices for Accessing and Using Sensors.

Download

latest version: Maven Central

replace x.y.z with the latest version

You can depend on the library through Maven:

<dependency>
    <groupId>com.github.pwittchen</groupId>
    <artifactId>reactivesensors-rx3</artifactId>
    <version>x.y.z</version>
</dependency>

or through Gradle:

dependencies {
  compile 'com.github.pwittchen:reactivesensors-rx3:x.y.z'
}

Tests

Tests are available in library/src/androidTest/java/ directory and can be executed on emulator or Android device from Android Studio or CLI with the following command:

./gradlew connectedCheck

Code style

Code style used in the project is called SquareAndroid from Java Code Styles repository by Square available at: https://github.com/square/java-code-styles. Currently, library doesn't have checkstyle verification attached. It can be done in the future.

Static code analysis

Static code analysis runs Checkstyle, FindBugs, PMD and Lint. It can be executed with command:

./gradlew check

Reports from analysis are generated in library/build/reports/ directory.

References

License

Copyright 2015 Piotr Wittchen

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].