Smart Gloves for bed ridden people using Arduino UNO

 


 Smart Gloves for Bedridden People Using Arduino UNO

Project Overview

Smart Gloves for Bedridden People is an assistive technology project designed to help patients who are unable to speak or move freely communicate their needs easily and independently.

The system uses the Arduino Uno, flex sensors embedded in a glove, and an I2C LCD display to convert simple finger movements into meaningful messages.

When a user bends a finger, the flex sensor detects the resistance change. The Arduino processes the signal and displays a predefined message on the LCD screen for caregivers to read.


Components Used

  • 1 × Arduino Uno

  • 3–5 × Flex Sensors

  • 1 × 16x2 I2C LCD Display

  • Resistors (typically 10kΩ for voltage divider)

  • Breadboard

  • Jumper wires

  • Glove (fabric base)


Working Principle

 1. Flex Sensor Operation

  • Flex sensors change resistance when bent.

  • More bending → Higher resistance.

  • Connected in a voltage divider circuit.

  • Arduino reads analog values from sensors.


 2. Gesture Detection

  • Each finger corresponds to a specific message.

  • Arduino compares sensor readings with predefined threshold values.

  • If bending exceeds threshold → gesture detected.


 3. Message Display

  • Once a gesture is recognized:

    • Arduino displays a predefined message on the I2C LCD.

  • Caregiver reads the message instantly.


💬 Example Gesture Mapping

Finger BentMessage Displayed
Thumb“I need water”
Index“I am hungry”
Middle“I am sleepy”
Ring“I need washroom”
Multiple FingersEmergency Alert

 Basic Circuit Concept

 Flex Sensor (Voltage Divider Setup)

  • One end → 5V

  • Other end → 10kΩ resistor → GND

  • Junction point → Arduino Analog Pin (A0, A1, A2...)


 I2C LCD Connections

LCD PinConnect To
VCC5V
GNDGND
SDAA4
SCLA5

(I2C reduces wiring complexity.)


Basic Arduino Logic (Concept)

int flex1 = analogRead(A0);

if (flex1 > 600) {
lcd.setCursor(0,0);
lcd.print("I need water");
}

(Repeat logic for other fingers.)


 Key Features

✅ Simple gesture-based communication
✅ Real-time message display
✅ Cost-effective design
✅ Easy to build and maintain
✅ User-friendly interface
✅ Portable and lightweight


Applications

  • Hospitals

  • Home care environments

  • Elderly care centers

  • Paralysis patient assistance

  • Rehabilitation centers


Educational Value

Students learn:

  • Analog sensor interfacing

  • Voltage divider concept

  • Gesture recognition logic

  • I2C communication

  • Assistive technology design

  • Human-centered engineering


Possible Upgrades

 Add buzzer for alert sound
 Add Bluetooth to send messages to mobile app
 IoT cloud monitoring system
 Battery-powered wearable design
 OLED display for compact size
 AI-based gesture recognition


 Social Impact

This project:

  • Improves patient dignity

  • Reduces caregiver confusion

  • Speeds up response time

  • Enables independent communication

  • Enhances quality of life








BEGINNER PROJECTS (Foundation Skills)

  1. Ultrasonic Distance Measurement
  2. Traffic Light Simulation with 7-Segment Display
  3. 7-Segment Display Counter
  4. Kids Piano Circuit (8-Key Version)
  5. 16×2 LCD Display with Text Output
  6. LCD I2C to Arduino UNO
  7. Temperature Measurement using Arduino UNO
  8. LDR Controlled Street Light

INTERMEDIATE PROJECTS (Build Your Skills)

  1. Servo Motor Control Using Potentiometer
  2. DC Motor Speed Control
  3. Temperature Controlled Fan
  4. PIR Based Theft Alert System
  5. LPG Gas Leakage Detection System
  6. Automatic Door Locking System
  7. Soil Moisture Based Automatic Watering System
  8. Simple Digital Clock using Arduino UNO
  9. Automatic Voting Machine (EVM)
  10. Joystick Control using Arduino Uno
  11. RGB Lamp Control using Arduino Uno

    ADVANCED PROJECTS (Master Level)

    1. Home Automation Using Arduino UNO
    2. Bluetooth RC Car using Arduino Uno
    3. Obstacle Avoiding Robot
    4. Line Follower Robot
    5. Radar System Using Arduino UNO
    6. Automatic Parking System
    7. Bi-Directional People Counter using Arduino Uno 
    8. Automatic Plant Watering System
    9. NeoPixel LED Ring Control using Arduino Uno
    10. Smart Gloves for Bedridden People

      ROBOTICS & MOTION PROJECTS

      1. RC Car Using L293D Motor Driver
      2. Robot Arm and Leg Control Using Servo
      3. Smart Irrigation System using Arduino Uno

      Comments