polar-bear-biochip 0.1.1

Bio-chip intelligence framework: multi-sensor EEG+motion fusion + rig-core LLM orchestration + ECDSA-signed data provenance
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Sensor layer: BCI (EEG), accelerometer, and sensor fusion.

/// Module for the accelerometer sensor.
pub mod accelerometer;
/// Module for the BCI (EEG) sensor.
pub mod bci;
/// Module for the sensor fusion algorithm.
pub mod fusion;

/// Re-exports the `SensorFusion` struct from the `fusion` module.
pub use fusion::SensorFusion;