Inspiration

Our inspiration stems from a stark reality in the ASEAN region and globally: traditional refreshable Braille displays often cost upward of \$3,000, creating an insurmountable economic barrier to literacy. This results in a staggering 70% unemployment rate among the visually impaired community. OmniBraille was born from the mission to disrupt this barrier, utilizing modern AI to create a truly accessible tactile ecosystem for just \$50.

What It Does

OmniBraille is a $50 integrated ecosystem that democratizes tactile literacy. It consists of a physical hardware terminal and an AI-powered cloud dashboard.

The system uses a Computer Vision (OCR) engine on our Next.js dashboard to instantly translate printed text into Braille. This data is sent via an API to our low-cost Arduino terminal, which uses a custom solenoid array to actuate the tactile pins. Simultaneously, our ML Adaptive Tutor monitors user hesitation and reading speed to personalize every lesson.

How We Built It

The project is vertically integrated:

  • Web Ecosystem: Built using Next.js 14, React, Tailwind CSS, and Vite. We deployed the solution on Vercel to ensure scalable access to the dashboard and API.
  • Hardware Terminal: Engineered using an Arduino Uno/Nano and a custom-designed 6-solenoid Braille cell. The schematic and 100x70mm PCB layout were designed for decentralized, low-cost manufacturing.
  • AI Implementation: We utilized a pre-trained Tesseract.js model on our Next.js backend for high-accuracy OCR text translation.

Challenges We Faced

The most significant technical challenge was powering the solenoids efficiently without requiring an external power brick. Our 6-dot Braille cell often requires high peak current. We overcame this by implementing a Staggered Delay Actuation logic in our C code.

Instead of activating all six pins simultaneously, we utilize microsecond-level delays between each pin actuation (Pin 1 to Pin 6), reducing the instantaneous current draw sufficiently to run the entire device off a standard 5V/1A USB connection.

What We Learned

Through building OmniBraille, we learned that true innovation often lies in radical simplification. By offloading complex processing to the cloud (AI brain), we could reduce the hardware terminal's cost by 95%, from \$3,000 to just \$50. This experience taught us that engineering affordable solutions requires a symbiotic approach, balancing software intelligence with efficient mechanical design.

Built With

Share this project:

Updates