Deaf Lead Design Engineer
Universal Music Design
DreamTENT @ Jupiter Original
July 25, 2026 // 3:30 to 4:50 PM
Most people have only experienced one type of haptic: phone vibration motors. Today you will feel many more.
For the Deaf and Hard of Hearing community,
programmable audio-reactive haptics
are not a novelty.
They are a sensory bridge.
PlatformIO's CLI is the real superpower.
It is language-agnostic. Shell out to pio run -t upload from Python, Node, Electron, or
anything else, and you have a custom flash toolchain in an afternoon.
The uploader below is exactly that: a thin web GUI over the CLI.
| Actuator | The Catch |
|---|---|
Mini Bass Shaker (8 Ohm)
|
Requires AC audio power. DC offset or clipping causes overheating and self-destruction. |
Piezoelectric Actuators
|
60V to 150V+ drive, specialized boost converters. Fragile to bending stress. |
Thermal (Peltier)
|
12V 5.8A, massive heat sinks required or instant burnout. |
Fans / Air Haptics
|
Deafeningly loud when pushed to simulate strong wind. |
Free yourself from the tyranny of batteries!
millis() scheduling.3.3V and GND rails, then
route the signal OUT pin directly to GPIO 6.Pin 6, hit save, and live telemetry stream begins immediately.| VCC | 3.3V Power Rail |
| GND | Common Ground Reference |
| OUT | GPIO 6 (Analog ADC Pin) |
Maps acoustic audio frequencies into physical mechanical pulses for sensory substitution. Drag pins to resize frequency bands.
// Accumulate phase dynamically using dt
rate = 2 + sin(t) * 1.5;
phase = frac(phase + dt * rate);
wave(phase)
// Low-pass filter loop via dt integration
q = 0.4;
f = 6 * dt;
bp = bp + f * (noise(t * 3) - lp - q * bp);
lp = lp + f * bp;
clamp(lp, 0, 1)
// Fast attack, slow release
target = square(t / 2, 0.5);
k = target > env ? 12 : 2.5;
env = env + (target - env) * min(1, dt * k);
env
// pow(2.718, -x) is e^-x: natural decay
envelope = pow(2.718, -5 * (t % 1.5));
noise(t * 20) * envelope
Plug and play like headphones, but limited to 0 to 250 Hz, peaking near 42 Hz.
Expensive, not easily shared, not easily washed.
Powerful but stationary. Works with any chair. Your downstairs neighbor will hate you.
SAFETY FIRST: software timers, physical guards, and fleet E-stop before every demo.
Thermal Reality: Motors heat up fast. Closed wearables can demagnetize or burn skin in minutes. Always enforce duty limits, active cooling, or heatsinks.
HAXEL
dillonsimeone.com/Projects/Haxel/index.html
Support Dillon (Venmo)
Verification (last 4 digits): 7082
Smartphone Haptics
dillonsimeone.com/MiniProjects/smartphoneHaptics/index.html
Thank You!