Product Promotion
0x5a.live
for different kinds of informations and explorations.
GitHub - hpost/rx-brainwaves: RxJava wrapper for NeuroSky MindWave headsets
RxJava wrapper for NeuroSky MindWave headsets. Contribute to hpost/rx-brainwaves development by creating an account on GitHub.
Visit SiteGitHub - hpost/rx-brainwaves: RxJava wrapper for NeuroSky MindWave headsets
RxJava wrapper for NeuroSky MindWave headsets. Contribute to hpost/rx-brainwaves development by creating an account on GitHub.
Powered by 0x5a.live ๐
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" }
}
Kotlin Resources
are all listed below.
GitHub - BenWoodworth/knbt: Kotlin NBT library for kotlinx.serialization
resource
~/github.com
resource
GitHub - brianmadden/krawler: A web crawling framework written in Kotlin
resource
~/github.com
resource
GitHub - OxygenCobalt/Auxio: A simple, rational music player for android
resource
~/github.com
resource
GitHub - eriksencosta/math-percentage: Percentage calculations made easy
resource
~/github.com
resource
GitHub - ctripcorp/mmkv-kotlin: A Kotlin Multiplatform porting for MMKV.
resource
~/github.com
resource
GitHub - Litote/kmongo: [deprecated] KMongo - a Kotlin toolkit for Mongo
resource
~/github.com
resource
Test-Driven Development Tutorial for Android: Getting Started
resource
~/www.raywenderlich.com
resource
GitHub - jacinpoz/rxaerospike: RxJava2 wrapper for aerospike-client-java
resource
~/github.com
resource
GitHub - pedrovgs/KotlinSnapshot: Snapshot Testing framework for Kotlin.
resource
~/github.com
resource
GitHub - hankdavidson/ktime: kotlin extensions to the java8 time library
resource
~/github.com
resource
GitHub - ziggy42/Blum: A simple android Twitter client written in Kotlin
resource
~/github.com
resource
Made with โค๏ธ
to provide different kinds of informations and resources.