Giter Site home page Giter Site logo

rx-brainwaves's Introduction

RxBrainwaves

RxJava wrapper for the NeuroSky MindWave headset Android SDK.

Connection

val brainwaves = RxBrainwaves()
// Observe connection state
brainwaves.connectionStates()
    .subscribe { state ->
        if (state == ConnectionState.WORKING) {
            Log.i("working")
        } else {
            Log.i("not yet working")
        }
    }

// Connect
brainwaves.connect(bluetoothAddress)

// Disconnect
brainwaves.disconnect()

Examples

Signal quality

brainwaves.data().ofType<Data.PoorSignal>()
    .distinctUntilChanged()
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe { (signal) ->
        when (signal) {
            0 -> Log.i("good signal")
            200 -> Log.i("not worn")
            else -> Log.i("bad signal")
        }
    }

Signal quality over time

brainwaves.data().ofType<Data.PoorSignal>()
    .buffer(3, TimeUnit.SECONDS)
    .map { samples -> samples.isNotEmpty() && samples.all { it.signal == 0 } }
    .distinctUntilChanged()
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe { hasGoodSignal ->
        if (hasGoodSignal) {
            Log.i("good signal for three seconds")
        } else {
            Log.i("interrupted signal")
        }
    }

Attention within a timespan

brainwaves.data().ofType<Data.Attention>()
    .map { it.value } // unwrap value
    .filter { it > 0 } // wait for good signal
    .delay(2, TimeUnit.SECONDS) // wait before sampling
    .buffer(3, TimeUnit.SECONDS) // sample for three seconds
    .take(1) // unsubscribe after taking the sample
    .observeOn(AndroidSchedulers.mainThread())
    .subscribe { samples ->
        val isElevated = samples.count { it in 80..100 } >= 2
        val isNeutral = samples.count { it in 50..80 } >= 2
        when {
            isNeutral -> Log.i("neutral attention")
            isElevated -> Log.i("elevated attention")
            else -> Log.i("lowered attention")
        }
    }

Meditation

brainwaves.data().ofType<Data.Meditation>()
    .subscribe { (meditation) ->
        Log.i("meditation level: $meditation")
    }

See the full list of ReactiveX operators for many more ways to process and manipulate the data stream from the headset.

Binaries

dependencies {
    implementation "cc.femto:rx-brainwaves:0.1"
}

Requires the JitPack repository:

repositories {
    maven { url "https://jitpack.io" }
}

rx-brainwaves's People

Contributors

hpost avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 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.