#bluetooth #bci #neurosky #mindwave

cerebrust

Cerebrust is a simple, easy-to-use library for working with NeuroSky devices under Rust

3 releases (breaking)

Uses new Rust 2024

0.3.0 Mar 24, 2025
0.2.0 Mar 18, 2025
0.1.0 Feb 28, 2025

#690 in Hardware support

Download history 143/week @ 2025-02-26 10/week @ 2025-03-05 42/week @ 2025-03-12 164/week @ 2025-03-19 37/week @ 2025-03-26

267 downloads per month

MIT license

24KB
311 lines

cerebrust

A library for interfacing with NeuroSky devices over Bluetooth, using Rust.

Important

Due to limitations in the availability of bluez, this library is only compatible with Linux systems.

Features

  • Connect to NeuroSky devices via RFCOMM.
  • Parse data packets, including raw values, signal quality, attention, meditation, and EEG power values.

Usage

Add to your Cargo.toml:

[dependencies]
cerebrust = "0.1.0"

Create a DeviceConfig and connect to the device:

use cerebrust::device::DeviceConfig;

#[tokio::main]
async fn main() -> bluer::Result<()> {
    let stream = DeviceConfig::default()
        .with_adapter("hci0".to_string())
        .with_name("MyndBand".to_string())
        .with_channel(5)
        .connect()
        .await
        .unwrap();
    // Use the `stream` to read data
    Ok(())
}

Read packets with DataReader:

use cerebrust::comm::DataReader;
//...
#[tokio::main]
async fn main() {
    // ...
    let mut data_reader = DataReader::new(stream);
    while let Ok(packet) = data_reader.poll_next().await {
        if let Some(eeg_power) = packet.eeg_power {
            println!("{eeg_power:?}");
        }
    }
}

Try to convert the packet into a specific type:

use cerebrust::comm::PacketVariant;
//...
#[tokio::main]
async fn main() {
    // ...
    match packet.try_into() {
        Ok(PacketVariant::RawWave { .. }) => {}
        Ok(PacketVariant::EegPower { .. }) => {}
        Err(e) => {
            eprintln!("Error parsing packet: {:?}", e);
        }
    }
}

See the examples for full usage (requires a NeuroSky device).

License

Licensed under the MIT license.

Dependencies

~11–21MB
~310K SLoC