For people with conditions like Cerebral Palsy or Tendonitis, simply gripping a cup or opening a door can be exhausting or impossible. Existing assistive devices often cost thousands of dollars. We set out to build something affordable and effective: a motorized glove that helps close the fingers, restoring grip strength for everyday tasks.
The concept is simple: fishing lines run from each fingertip to a motor-driven spool on the forearm. Press a button, the motor winds the lines, and the fingers curl into a grip. Release the button, and the user can manually open their hand. Total estimated cost: around $50.

Final assembly and bill of materials for the Grip Assistive Glove.
We explored several mechanisms before settling on our approach. Some ideas used springs for automatic release; others had separate motors per finger. Each added complexity, weight, or cost. The winning concept: one motor, simple lines, manual release—the user's own muscle handles opening.

Early sketches exploring different design approaches and mechanisms.
The final mechanism uses one motor to pull all four fingers at once, with a separate line for the thumb (which moves differently during gripping). When not powered, the lines are slack—they don't fight against the user trying to open their hand.
Will the fishing line snap? We checked by assuming the motor stalls at maximum torque (worst case). The 40 lb rated fishing line has plenty of margin against the calculated forces:
Where τ is motor torque, r is spool radius, and η is system efficiency.
We modeled every component in SolidWorks before building anything. Lines route through small 3D-printed nodes on each finger, converge at a palm node, and connect to a spool on the forearm. Two buttons control the motor: wind to grip, unwind to release.
1GRIP CONTROL ALGORITHM
2======================
3
4STATE: idle | winding | unwinding
5
6LOOP:
7 IF wind_button pressed:
8 state = winding
9 Motor pulls lines (grip)
10
11 ELSE IF unwind_button pressed:
12 state = unwinding
13 Motor releases lines (open)
14
15 ELSE:
16 state = idle
17 Motor stops
18
19 Check limit switches for safety
20ENDLOOP
CAD model of the finger node design.

CAD model of the motor spool assembly.
The 3D-printed finger nodes are the weakest links—will they break under load? FEA simulation applied realistic forces and checked whether the PLA plastic would hold up. Good news: stress levels stayed well below failure, with essentially no bending.

FEA stress distribution on a finger node.

FEA displacement analysis under load.
We chose PLA plastic for the 3D-printed parts—cheap, easy to print, strong enough. For production at scale, injection molding would drop costs further. Here's what goes into one glove:
With a 30% markup on manufacturing cost (~$40), the estimated retail price is $52.14 — positioning this as an affordable solution in the assistive technology market.
We built a working prototype for under $44—well under our budget. This validates the core premise: grip assistance doesn't have to cost thousands of dollars. With some refinement, this could become an accessible option for people who need it.