Independent research concept

NeuroCalm.

A wearable that listens to alpha and theta rhythms and gives the brain a signal, a calming light, a gentle vibration, before sensory overload becomes crisis.

A lot of people who are overwhelmed can’t put it into words while it’s happening.

Sensory overload usually builds before anyone can name it. By the time someone can say “this is too much,” the chance to do anything calming has often already passed. NeuroCalm is meant to read what’s happening underneath the experience, in the brainwaves, and step in early with something quiet, before things spiral.

The idea I’m testing: if a headband watches the EEG bands that track stress and attention, and gives a small, optional cue when those bands shift, it might give someone a few extra seconds, the window where calming yourself down is still possible.

Why brainwaves?

Autistic individuals frequently show altered alpha (8–12 Hz) and theta (4–7 Hz) rhythms. Lower alpha tracks reduced calm and focus; elevated theta tracks inattention, stress, and sensory overload. These bands can be non-invasively monitored using consumer-grade EEG.

Neurofeedback, training individuals to regulate brainwave activity through real-time cues, has been studied in autism for decades. The evidence is genuinely mixed: some protocols show meaningful gains in attention, social function, and anxiety; other reviews argue methodological weaknesses leave the picture unsettled. NeuroCalm sits honestly inside that controversy: a support tool, not a treatment, with its limitations on the box.

Key literature consulted during design:

  • Coben, Linden & Myers (2010), review of neurofeedback in ASD; reports reduction in slow-wave activity and gains in focus and behavior.
  • Kouijzer et al. (2009), SMR enhancement and theta inhibition over 40–100 sessions improved executive function and reduced anxiety.
  • Thompson et al. (2010), brainwave training increased frontal alpha power, supporting calmer states in autistic participants.
  • Cowan & Markham (1994), case study with 21 sessions; gains maintained at 2-year follow-up.
  • ASAT (2017), the contrary view: insufficient evidence to recommend neurofeedback as a treatment in autism. Cited deliberately.

Hardware specification.

  • EEG input: NeuroSky MindWave Mobile 2 (single-channel, 12-bit, 512 Hz, 3–100 Hz), or simulated input from a Python harness for development.
  • Microcontroller: Arduino UNO (or ESP32 / Micro:bit), Bluetooth-paired to the EEG headset.
  • Feedback outputs: programmable LED for visual cueing, mini vibration motor for haptic feedback, optional buzzer for low-volume auditory tones. User selects which channels are enabled.
  • Form factor: soft fabric headband with foam-padded electrode mount and Velcro closure, sized for sensory tolerance, not data quality.

Detection logic.

The firmware watches the alpha/theta ratio against a personalized threshold. When theta rises or alpha falls beyond the threshold, a calming routine fires: a slow LED fade-up, a brief haptic pulse, optionally a tone. The intervention is designed to be noticeable but not commanding, a tap on the shoulder, not an alarm.

Excerpt from the prototype Arduino sketch.

The prototype runs on simulated EEG by default so the feedback loop can be tested without hardware, then switches to real input when the MindWave is paired.

// NeuroCalm prototype loop (excerpt)
void loop() {
  // Replace with real EEG parsing once paired
  alpha = random(0, 100) / 100.0;
  theta = random(0, 100) / 100.0;

  // Stress thresholds
  if (theta > 0.5 || alpha < 0.3) {
    // Calming LED fade-up
    for (int b = 0; b <= 255; b += 5) {
      analogWrite(ledPin, b);
      delay(100);
    }
    // Single haptic pulse
    digitalWrite(motorPin, HIGH);
    delay(1000);
    digitalWrite(motorPin, LOW);
  }
  delay(1000);
}

What this is, and what it isn’t.

NeuroCalm is a prototype, not a medical device. It does not diagnose, treat, or cure anything. The research on neurofeedback for autism is real but unsettled, and a working version of NeuroCalm would need real testing with real users over time before anyone could honestly say it helps. I want to be clear about that, this is a support tool that might be useful, not a therapy. The limits should be on the box.

From concept to a real headband.

  • Build the physical headband and test fit and comfort across multiple wear sessions.
  • Replace simulated EEG with live MindWave input; calibrate thresholds per-user via baseline session.
  • Add a companion app for selecting feedback type, logging events, and reviewing patterns over time.
  • Run small-scale informal feasibility testing with consenting users; collect qualitative feedback.

If you build assistive tech, work in autism support, or want to talk EEG hardware design, please say hello.

← Back to all projects