SlideShare a Scribd company logo
2
Most read
3
Most read
5
Most read
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2601
Prosthetic Hand Control Using EMG Sensor
Usman Khan1, Mainak Roy2
B.Tech (ESE) National Institute of Electronics and I.T, Aurangabad (Maharashtra), India
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - The idea of this project is to change the
perspective of remote controls to manually operated Robotic-
Hand. In this project we work on the design and development
of a Robotic Hand using an Arduino board, and servo motors.
The design of the hand is based on a simple, easy, flexible, and
minimal controlling strategy. The Robotic Hand has been
assigned independent commands for all the five fingers to
open and close, pick and place, and to get back to home
position. The Arduino based human hand replication system is a
system that can help and avoid the human presence to be put
under harmful situations such as radioactive and bio
hazardous. Thetechnology can also be helpful in very precise
instrumentationworkings like a doctor operating a patient
with a robot without its own hands. The technology has its
many useful applications in the field of robotics, surgical
operations, humanoid robots, etc.
Key Words: Arduino, FFRH, Robotic-Hand, Replication
System
1. INTRODUCTION
The term "prosthetic" comes from a new Latin word
from Greek "prostithenai" meaning "to add to, or to put
in addition", this describes the addition of an artificial
body part, such as a limb, a heart. The human upper limb
is an important part of the body, the partial or complete
loss of which can have a serious effect on a person's
ability on the day to day activities. The human upper
limb has three sections the hand, forearm, and arm. For
the movement of each section, coordination of the
nervous system, musculoskeletal systems, and its
surroundings is necessary. To perform various daily
activities, coordination of different joints (shoulder, elbow,
wrist, and finger joint) is essential, including a broad
range of motions with several degrees of freedom. These
coordinated movements are notalways redundant and can
be beneficial to perform complex tasks. When it comes to
an artificial hand, all the control features of the normal
hand should extensively match, so that the user can
perform their daily needs in a modified and effective way.
The coordinated control of the biological hand is quite
complex, making it highly difficult to replicate it exactly
in any prosthetic hand.
Most of the systems are designed for people who lost
their hand or leg in an accident or who are handicapped
by birth.With 3D printed prosthetics gaining popularity
with the advent of consumer-level 3D printers, practical
applications of these prosthetics have also been
increasing. Online open- source development has allowed
for printable hand modelsto be downloaded for free within
minutes from websites such as Thingiverse, a free, open-
source 3D modeling site. Contrary to traditional
prosthetics, which often cost tens of thousands of dollars
and are usually unaffordable to many, these alternatives
provide a relatively inexpensive option to the public. This
allows for less expensive, yet effective prosthetics to be
available to modern consumers, with increased
personalization for the user at a speed unachievable by
conventional methods.
Objective
 It is helpful for the people who have lost one of their
hands or if it is paralyzed.
 Low cost. The whole hand can be manufactured for
200 USD, which makes it very affordable in
comparisons to its present contemporary robotic
hand proposal.
 Highly effective
 The Light weight 3D printed modules/parts, makesit
very easy for the user to carry it around with them.
 Safe to use
 Easy operate
 It can be further modified. It can be custom made
depending upon how the user wants it to function.It
can even be controlled through cloud or Wi-Fi.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
Need of the Project
In the United States, there are approximately 40,000+
persons who have lost their major upper-limb or have it
paralyzed. Activities that a person could routinely
perform may no longer be possible or may require
additional effort and time due to upper limb amputation.
Upper limb prostheses can assist amputees in activities of
daily living such as feeding, dressing, and hygiene tasks.
These performance capabilities are highly desired by
persons with upper-limb amputation, regardless of their
amputation level or current prosthesis type.
Unfortunately, due to the limitations of clinically available
prosthetics technologies, a substantial proportion of
persons with upper limb amputation (10–25%) do not
use prosthesis. Of those patients that do use prosthesis,
2. METHODOLOGY
The following block diagram of the proposed system,
which includes Arduino UNO, regulated power supply,
fourservo motors (MG995), and one servo motor (SG90).
Arduino boards are broadly used because it has the
feature that it can read various types of input like light on
a sensor, pressing of a button by finger and turning
ON/OFF of a motor/LED, etc. So, this board is very
suitable for this project. In this system, the MG995 servo
motor is used because it provides low speed with the exact
position which is very important for the useful
functioning of the hand. Servo motors are present in
many sizes and shapes. Servo motors have three wires
one is for power supply, one is forground and one more is
for angular rotation (0-180 degree)readings and this wire
of the servo motor is connected tothe Arduino board.
Fig2.1 Experimental Setup
3. SYSTEM DEVELOPMENT
List of Components used in this project:
only approximately 50% of subjects use an electric
prosthesis. Improving prosthetic technology in ways that
yield appreciable benefits in tasks that amputees identify
as important, such as ADLs, is essential to increase
acceptance rates of electric prostheses and, ultimately,
improve quality of life post-amputation.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
3D Printed Prosthetic Hand EMG Sensor
Servo Motor (MG995)
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2602
4. BLOCK DIAGRAM
5. ASSEMBLY
Step by step procedure to assemble the hand:
Step 1: All fingers except the thumb are assembled from the
fingertip, joint, and knuckle. The string is used to join these
parts. Thumb is assembled from the thumb joint, thumb tip,
and joint.
Step 2: Four Servo motors are placed in the Forearm region
and tightened with a screw provided with the servo motor.
Threads are connected to the servo on the horns. The infant
finger and the ring finger areconnected to a similar servo,as
they provide the same functionality. Four Gesture
Recognition of a Robotic Hand using EMG.
Step 3: Cut ten 20 inches of fishing line. Two fishing lines
per finger are used. Crimp them by feeding the fishing line
from one side. Feed the fishing line from the fingertips till
the fishing line exists from the palm.
Step 4: Now the fishing line is attached to thecorresponding
servo motor. The fishing line should be tensioned. To check
the fishing line is tension's move. The motor is counter-
clockwise with the hand and the finger will move inward.By
rotating it clockwise the finger should open.
Step 5: Now stick the electrode pads and then connect
Arduino with motors and place the forearm cover on the
forearm body.
The following code is for the Electromyography Sensor:
int EMGPin = A0;
int EMGVal = 0;
void setup() {
Serial.begin(9600);
}
void loop() {
EMGVal = analogRead(EMGPin);
Serial.println(EMGVal);
}
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072
6. PROGRAM
The following code is for making a wrist:
#include
<Servo.h> int
EMGPin = A1;
int EMGVal = 0;
Servo servo1;
Servo servo2;
Servo servo3;
Servo servo4;
Servo servo5;
const int servoPin1
= 3; const int
servoPin2 = 5; const
int servoPin3 = 6;
const int servoPin4
= 9; const int
servoPin5 = 10;
void setup() {
Serial.begin(9600);
servo1.attach(servoP
in1);
servo2.attach(servoP
in2);
servo3.attach(servoP
in3);
servo4.attach(servoP
in4);
servo5.attach(servoP
in5);
servo1.write(0);//pi
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2603
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
p-ISSN: 2395-0072
Volume: 09 Issue: 07 | Jul 2022 www.irjet.net
servo3.write(1
80);
servo2.write(0
)
servo4.write(0
);
servo5.write(0
); delay(2000);
servo1.detach(
);
servo3.detach(
);
servo2.detach(
);
servo4.detach(
);
servo5.detach(
); delay(2000);
nky delay(1000);
servo1.detach();
servo2.write(180);//midd
le delay(1000);
servo2.detach();
servo3.write(0);//thumb
delay(1000);
servo3.detach();
servo4.write(180);//4
delay(1000);
servo4.detach();
servo5.write(180);//5
delay(1000);
servo5.detach();
}
void loop() {
//**************** FOR READING OF EMG
**********************EMGVal = analogRead(EMGPin);
Serial.println(EMGVal);
delay(20);
//***********************************************************
**********
if (EMGVal >= 120 && EMGVal <= 200)
{ //**************** FOR CLOSING OF FINGERS
**********************servo1.attach(servoPin1);
servo2.attach(servoPin2);
servo3.attach(servoPin3);
servo4.attach(servoPin4);
servo5.attach(servoPin5);
servo1.write(180);
}
if (EMGVal >= 50 && EMGVal <= 100)
{
//**************** FOR OPNING OF FINGERS
**********************
servo1.attach(s
ervoPin1);
servo2.attach(s
ervoPin2);
servo3.attach(s
ervoPin3);
servo4.attach(s
ervoPin4);
servo5.attach(s
ervoPin5);
servo1.write(0);
servo3.write(0);
servo2.write(18
0);
servo4.write(18
0);
servo5.write(18
0); delay(2000);
servo1.detach();
servo3.detach();
servo2.detach();
servo4.detach();
servo5.detach();
delay(2000);
}
//***** FOR TESTING UNCOMMENT IT AND COMMENT
ALL *****
// servo1.attach(servoPin1);
// servo2.attach(servoPin2);
// servo3.attach(servoPin3);
// servo4.attach(servoPin4);
// servo5.attach(servoPin5);
// servo1.write(130);
// servo3.write(0);
// servo2.write(0);
// servo4.write(0); // servo5.write(160);
// delay(2000);
// servo1.write(0);
// servo3.write(180);
// servo2.write(200);
// servo4.write(180);
// servo5.write(0);
// delay(2000);
// servo1.detach();
// servo3.detach();
// servo2.detach();
// servo4.detach();
// servo5.detach();
// delay(2000);
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2604
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
p-ISSN: 2395-0072
Volume: 09 Issue: 07 | Jul 2022 www.irjet.net
In this project, we have designed and developed the
lightweight 3D-printedprosthetic robotic hand which works
on Arduino UNO, Servo motor, and EMG sensor. The Arduino
board is programmed in such a way that the whole system is
controlled to perform the daily life activities. This system
helps the disabled person to overcome their obstacles in
daily life and it also have many applications in
manufacturing industries, the medical field, and many
more.The proposed model is of low cost and the hardware
components of the system are easily available.
ACKNOWLEDGEMENT
We would like to express our special thanks to our guide
Scientist/Engineer ‘B’ Prashant Pal and co-guide
Scientist/Engineer ‘C’ Saurabh Kesari for his advice and
encouragement, which has greatly benefited this paper. We
also thank National Institute of Electronics and Information
Technology, Aurangabad for having all the necessary
resources and facilities that significantly enhanced this
manuscript with support and laboratory
[2] Vaibhav Pawar, Sneha Bire, Shubham More, Komal More
and Reshma Mule, “Review on Design and Development of
Robotic Arm Generation-1”, International Journal of
Innovative Science and Research Technology, pp.529, March
2018
[3] Tran Vanhuy, Dao Tuan Minh, Kien Nguyen Phan and Vu
Anh Tran, “Simple Robotic Hand in Motion Using Arduino
Controlled Servos”, International Journal of Science and
Research (IJSR), pp. 972- 974, March 2017.
[4] Kobayashi H, Ishida Y, Suzuki H, “Realization of all motion
for the upper limb by a muscle suit”, IEEE International
Workshop on Robot and Human Interactive Communication,
Japan, September 2004
[5] Iason Batzianoulis, Aude Billard, Nili E. Krausz, Ann M.
Simon & Levi Hargrove, “Decoding the grasping intention
from electromyography during reaching motions”
Batzianoulis et al. Journal of Neuro Engineering and
Rehabilitation 2018 [6] J.B. Gupta, Electronic Devices and
Circuits, S. K. Kataria & Sons, 2009
BIOGRAPHIES
REFERENCES
[1] Sivapong Nilwong, Delowar Hossain, Eneo Petoku, and
Genci Capi “Development of Myoelectric Robotic Hand using
3D Printer“, 1st International Conference on Advances in
Science, Engineering and Robotics Technology 2019
(JCASERT 2019)
Usman Khan ,B.Tech 4th year (ESE)
National Institute of Electronics and
I.T,Aurangabad(Maharashtra), India
Mainak Roy, B.Tech 4th year (ESE)
National Institute of Electronics and
I.T,Aurangabad(Maharashtra), India
Prashant Pal, Scientist/Engineer
‘B’ National Institute of Electronics
and I.T, Aurangabad(Maharashtra),
India
Saurabh Kesari, Scientist/Engineer
‘C’ National Institute of Electronics
and I.T, Aurangabad(Maharashtra),
India
7. CONCLUSION
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2605

More Related Content

PDF
IRJET- Human Hand Movement Training with Exoskeleton ARM
PDF
IRJET - Tele-Replication of Human Hand Movements
PDF
Design And Development Of Prosthestic Limbs
PDF
IRJET- Smart Wheelchair with Object Detection using Deep Learning
PDF
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
PDF
IRJET- An Aid for Visually Impaired Pedestrain
PDF
IRJET- Robotic Hand Controlling using Flex Sensors and Arduino UNO
PDF
IRJET- Gesture Controlled Speaking Microcontroller for Dumb and Handicapp...
IRJET- Human Hand Movement Training with Exoskeleton ARM
IRJET - Tele-Replication of Human Hand Movements
Design And Development Of Prosthestic Limbs
IRJET- Smart Wheelchair with Object Detection using Deep Learning
IRJET- IoT Based Home Automation And Health Monitoring System for Physically ...
IRJET- An Aid for Visually Impaired Pedestrain
IRJET- Robotic Hand Controlling using Flex Sensors and Arduino UNO
IRJET- Gesture Controlled Speaking Microcontroller for Dumb and Handicapp...

Similar to Prosthetic Hand Control Using EMG Sensor (20)

PDF
Anthropomorphic transradial myoelectric hand using tendon-spring mechanism
PDF
IRJET - Smart Yoga Instructor
PDF
Smart Wheelchair with Trolley for Elderly People
PDF
A9399109119
PDF
IRJET- Smartphone Based Wheelchair
PDF
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
PDF
Vehicle Controlled by Hand Gesture Using Raspberry pi
PDF
IRJET- Design and Construction of Electric Drive -A Smart System for Disabled...
PDF
IRJET- Design and Fabrication of Automated Wheel Chair
PDF
L.E.D (LifeFone for Elderly and Disabled)
PDF
IRJET- Microcontroller Based EOG and Accelerometer Guide Wheelchair
PDF
IRJET- IoT based Smart Sensing Wheelchair to Assist in Healthcare
PDF
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
PDF
Semi-Automated Control System for Reaching Movements in EMG Shoulder
PDF
IRJET- Hand Movement Recognition for a Speech Impaired Person
PDF
DEVELOPMENT OF MODIFIED SETUP FOR ALIGNMENT OF ROD/ ARTIFICIAL FRACTURE FEMUR...
PDF
Driver Drowsiness Monitoring System Using Visual Signals and Embedded System
PDF
Rect-O-Back
PDF
IRJET - Wheelchair Control using Eye-Motion
PDF
BOT FOR WILDLIFE PROTECTION
Anthropomorphic transradial myoelectric hand using tendon-spring mechanism
IRJET - Smart Yoga Instructor
Smart Wheelchair with Trolley for Elderly People
A9399109119
IRJET- Smartphone Based Wheelchair
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
Vehicle Controlled by Hand Gesture Using Raspberry pi
IRJET- Design and Construction of Electric Drive -A Smart System for Disabled...
IRJET- Design and Fabrication of Automated Wheel Chair
L.E.D (LifeFone for Elderly and Disabled)
IRJET- Microcontroller Based EOG and Accelerometer Guide Wheelchair
IRJET- IoT based Smart Sensing Wheelchair to Assist in Healthcare
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
Semi-Automated Control System for Reaching Movements in EMG Shoulder
IRJET- Hand Movement Recognition for a Speech Impaired Person
DEVELOPMENT OF MODIFIED SETUP FOR ALIGNMENT OF ROD/ ARTIFICIAL FRACTURE FEMUR...
Driver Drowsiness Monitoring System Using Visual Signals and Embedded System
Rect-O-Back
IRJET - Wheelchair Control using Eye-Motion
BOT FOR WILDLIFE PROTECTION
Ad

More from IRJET Journal (20)

PDF
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
PDF
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
PDF
Kiona – A Smart Society Automation Project
PDF
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
PDF
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
PDF
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
PDF
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
PDF
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
PDF
BRAIN TUMOUR DETECTION AND CLASSIFICATION
PDF
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
PDF
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
PDF
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
PDF
Breast Cancer Detection using Computer Vision
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
PDF
Auto-Charging E-Vehicle with its battery Management.
PDF
Analysis of high energy charge particle in the Heliosphere
PDF
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Enhanced heart disease prediction using SKNDGR ensemble Machine Learning Model
Utilizing Biomedical Waste for Sustainable Brick Manufacturing: A Novel Appro...
Kiona – A Smart Society Automation Project
DESIGN AND DEVELOPMENT OF BATTERY THERMAL MANAGEMENT SYSTEM USING PHASE CHANG...
Invest in Innovation: Empowering Ideas through Blockchain Based Crowdfunding
SPACE WATCH YOUR REAL-TIME SPACE INFORMATION HUB
A Review on Influence of Fluid Viscous Damper on The Behaviour of Multi-store...
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Explainable AI(XAI) using LIME and Disease Detection in Mango Leaf by Transfe...
BRAIN TUMOUR DETECTION AND CLASSIFICATION
The Project Manager as an ambassador of the contract. The case of NEC4 ECC co...
"Enhanced Heat Transfer Performance in Shell and Tube Heat Exchangers: A CFD ...
Advancements in CFD Analysis of Shell and Tube Heat Exchangers with Nanofluid...
Breast Cancer Detection using Computer Vision
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
A Novel System for Recommending Agricultural Crops Using Machine Learning App...
Auto-Charging E-Vehicle with its battery Management.
Analysis of high energy charge particle in the Heliosphere
Wireless Arduino Control via Mobile: Eliminating the Need for a Dedicated Wir...
Ad

Recently uploaded (20)

PDF
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
PDF
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
PPTX
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
PDF
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
PDF
III.4.1.2_The_Space_Environment.p pdffdf
PPTX
Information Storage and Retrieval Techniques Unit III
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PDF
UNIT no 1 INTRODUCTION TO DBMS NOTES.pdf
PDF
Soil Improvement Techniques Note - Rabbi
PDF
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
PDF
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
PPT
introduction to datamining and warehousing
PPT
A5_DistSysCh1.ppt_INTRODUCTION TO DISTRIBUTED SYSTEMS
PPT
INTRODUCTION -Data Warehousing and Mining-M.Tech- VTU.ppt
PPT
Occupational Health and Safety Management System
PDF
Integrating Fractal Dimension and Time Series Analysis for Optimized Hyperspe...
PDF
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
PDF
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
PDF
SMART SIGNAL TIMING FOR URBAN INTERSECTIONS USING REAL-TIME VEHICLE DETECTI...
PDF
Categorization of Factors Affecting Classification Algorithms Selection
A SYSTEMATIC REVIEW OF APPLICATIONS IN FRAUD DETECTION
BIO-INSPIRED HORMONAL MODULATION AND ADAPTIVE ORCHESTRATION IN S-AI-GPT
6ME3A-Unit-II-Sensors and Actuators_Handouts.pptx
Human-AI Collaboration: Balancing Agentic AI and Autonomy in Hybrid Systems
III.4.1.2_The_Space_Environment.p pdffdf
Information Storage and Retrieval Techniques Unit III
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
UNIT no 1 INTRODUCTION TO DBMS NOTES.pdf
Soil Improvement Techniques Note - Rabbi
Artificial Superintelligence (ASI) Alliance Vision Paper.pdf
PREDICTION OF DIABETES FROM ELECTRONIC HEALTH RECORDS
introduction to datamining and warehousing
A5_DistSysCh1.ppt_INTRODUCTION TO DISTRIBUTED SYSTEMS
INTRODUCTION -Data Warehousing and Mining-M.Tech- VTU.ppt
Occupational Health and Safety Management System
Integrating Fractal Dimension and Time Series Analysis for Optimized Hyperspe...
BIO-INSPIRED ARCHITECTURE FOR PARSIMONIOUS CONVERSATIONAL INTELLIGENCE : THE ...
Level 2 – IBM Data and AI Fundamentals (1)_v1.1.PDF
SMART SIGNAL TIMING FOR URBAN INTERSECTIONS USING REAL-TIME VEHICLE DETECTI...
Categorization of Factors Affecting Classification Algorithms Selection

Prosthetic Hand Control Using EMG Sensor

  • 1. © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2601 Prosthetic Hand Control Using EMG Sensor Usman Khan1, Mainak Roy2 B.Tech (ESE) National Institute of Electronics and I.T, Aurangabad (Maharashtra), India ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - The idea of this project is to change the perspective of remote controls to manually operated Robotic- Hand. In this project we work on the design and development of a Robotic Hand using an Arduino board, and servo motors. The design of the hand is based on a simple, easy, flexible, and minimal controlling strategy. The Robotic Hand has been assigned independent commands for all the five fingers to open and close, pick and place, and to get back to home position. The Arduino based human hand replication system is a system that can help and avoid the human presence to be put under harmful situations such as radioactive and bio hazardous. Thetechnology can also be helpful in very precise instrumentationworkings like a doctor operating a patient with a robot without its own hands. The technology has its many useful applications in the field of robotics, surgical operations, humanoid robots, etc. Key Words: Arduino, FFRH, Robotic-Hand, Replication System 1. INTRODUCTION The term "prosthetic" comes from a new Latin word from Greek "prostithenai" meaning "to add to, or to put in addition", this describes the addition of an artificial body part, such as a limb, a heart. The human upper limb is an important part of the body, the partial or complete loss of which can have a serious effect on a person's ability on the day to day activities. The human upper limb has three sections the hand, forearm, and arm. For the movement of each section, coordination of the nervous system, musculoskeletal systems, and its surroundings is necessary. To perform various daily activities, coordination of different joints (shoulder, elbow, wrist, and finger joint) is essential, including a broad range of motions with several degrees of freedom. These coordinated movements are notalways redundant and can be beneficial to perform complex tasks. When it comes to an artificial hand, all the control features of the normal hand should extensively match, so that the user can perform their daily needs in a modified and effective way. The coordinated control of the biological hand is quite complex, making it highly difficult to replicate it exactly in any prosthetic hand. Most of the systems are designed for people who lost their hand or leg in an accident or who are handicapped by birth.With 3D printed prosthetics gaining popularity with the advent of consumer-level 3D printers, practical applications of these prosthetics have also been increasing. Online open- source development has allowed for printable hand modelsto be downloaded for free within minutes from websites such as Thingiverse, a free, open- source 3D modeling site. Contrary to traditional prosthetics, which often cost tens of thousands of dollars and are usually unaffordable to many, these alternatives provide a relatively inexpensive option to the public. This allows for less expensive, yet effective prosthetics to be available to modern consumers, with increased personalization for the user at a speed unachievable by conventional methods. Objective  It is helpful for the people who have lost one of their hands or if it is paralyzed.  Low cost. The whole hand can be manufactured for 200 USD, which makes it very affordable in comparisons to its present contemporary robotic hand proposal.  Highly effective  The Light weight 3D printed modules/parts, makesit very easy for the user to carry it around with them.  Safe to use  Easy operate  It can be further modified. It can be custom made depending upon how the user wants it to function.It can even be controlled through cloud or Wi-Fi. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 Need of the Project In the United States, there are approximately 40,000+ persons who have lost their major upper-limb or have it paralyzed. Activities that a person could routinely perform may no longer be possible or may require additional effort and time due to upper limb amputation. Upper limb prostheses can assist amputees in activities of daily living such as feeding, dressing, and hygiene tasks. These performance capabilities are highly desired by persons with upper-limb amputation, regardless of their amputation level or current prosthesis type. Unfortunately, due to the limitations of clinically available prosthetics technologies, a substantial proportion of persons with upper limb amputation (10–25%) do not use prosthesis. Of those patients that do use prosthesis,
  • 2. 2. METHODOLOGY The following block diagram of the proposed system, which includes Arduino UNO, regulated power supply, fourservo motors (MG995), and one servo motor (SG90). Arduino boards are broadly used because it has the feature that it can read various types of input like light on a sensor, pressing of a button by finger and turning ON/OFF of a motor/LED, etc. So, this board is very suitable for this project. In this system, the MG995 servo motor is used because it provides low speed with the exact position which is very important for the useful functioning of the hand. Servo motors are present in many sizes and shapes. Servo motors have three wires one is for power supply, one is forground and one more is for angular rotation (0-180 degree)readings and this wire of the servo motor is connected tothe Arduino board. Fig2.1 Experimental Setup 3. SYSTEM DEVELOPMENT List of Components used in this project: only approximately 50% of subjects use an electric prosthesis. Improving prosthetic technology in ways that yield appreciable benefits in tasks that amputees identify as important, such as ADLs, is essential to increase acceptance rates of electric prostheses and, ultimately, improve quality of life post-amputation. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 3D Printed Prosthetic Hand EMG Sensor Servo Motor (MG995) © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2602
  • 3. 4. BLOCK DIAGRAM 5. ASSEMBLY Step by step procedure to assemble the hand: Step 1: All fingers except the thumb are assembled from the fingertip, joint, and knuckle. The string is used to join these parts. Thumb is assembled from the thumb joint, thumb tip, and joint. Step 2: Four Servo motors are placed in the Forearm region and tightened with a screw provided with the servo motor. Threads are connected to the servo on the horns. The infant finger and the ring finger areconnected to a similar servo,as they provide the same functionality. Four Gesture Recognition of a Robotic Hand using EMG. Step 3: Cut ten 20 inches of fishing line. Two fishing lines per finger are used. Crimp them by feeding the fishing line from one side. Feed the fishing line from the fingertips till the fishing line exists from the palm. Step 4: Now the fishing line is attached to thecorresponding servo motor. The fishing line should be tensioned. To check the fishing line is tension's move. The motor is counter- clockwise with the hand and the finger will move inward.By rotating it clockwise the finger should open. Step 5: Now stick the electrode pads and then connect Arduino with motors and place the forearm cover on the forearm body. The following code is for the Electromyography Sensor: int EMGPin = A0; int EMGVal = 0; void setup() { Serial.begin(9600); } void loop() { EMGVal = analogRead(EMGPin); Serial.println(EMGVal); } International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 07 | July 2022 www.irjet.net p-ISSN: 2395-0072 6. PROGRAM The following code is for making a wrist: #include <Servo.h> int EMGPin = A1; int EMGVal = 0; Servo servo1; Servo servo2; Servo servo3; Servo servo4; Servo servo5; const int servoPin1 = 3; const int servoPin2 = 5; const int servoPin3 = 6; const int servoPin4 = 9; const int servoPin5 = 10; void setup() { Serial.begin(9600); servo1.attach(servoP in1); servo2.attach(servoP in2); servo3.attach(servoP in3); servo4.attach(servoP in4); servo5.attach(servoP in5); servo1.write(0);//pi © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2603
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 p-ISSN: 2395-0072 Volume: 09 Issue: 07 | Jul 2022 www.irjet.net servo3.write(1 80); servo2.write(0 ) servo4.write(0 ); servo5.write(0 ); delay(2000); servo1.detach( ); servo3.detach( ); servo2.detach( ); servo4.detach( ); servo5.detach( ); delay(2000); nky delay(1000); servo1.detach(); servo2.write(180);//midd le delay(1000); servo2.detach(); servo3.write(0);//thumb delay(1000); servo3.detach(); servo4.write(180);//4 delay(1000); servo4.detach(); servo5.write(180);//5 delay(1000); servo5.detach(); } void loop() { //**************** FOR READING OF EMG **********************EMGVal = analogRead(EMGPin); Serial.println(EMGVal); delay(20); //*********************************************************** ********** if (EMGVal >= 120 && EMGVal <= 200) { //**************** FOR CLOSING OF FINGERS **********************servo1.attach(servoPin1); servo2.attach(servoPin2); servo3.attach(servoPin3); servo4.attach(servoPin4); servo5.attach(servoPin5); servo1.write(180); } if (EMGVal >= 50 && EMGVal <= 100) { //**************** FOR OPNING OF FINGERS ********************** servo1.attach(s ervoPin1); servo2.attach(s ervoPin2); servo3.attach(s ervoPin3); servo4.attach(s ervoPin4); servo5.attach(s ervoPin5); servo1.write(0); servo3.write(0); servo2.write(18 0); servo4.write(18 0); servo5.write(18 0); delay(2000); servo1.detach(); servo3.detach(); servo2.detach(); servo4.detach(); servo5.detach(); delay(2000); } //***** FOR TESTING UNCOMMENT IT AND COMMENT ALL ***** // servo1.attach(servoPin1); // servo2.attach(servoPin2); // servo3.attach(servoPin3); // servo4.attach(servoPin4); // servo5.attach(servoPin5); // servo1.write(130); // servo3.write(0); // servo2.write(0); // servo4.write(0); // servo5.write(160); // delay(2000); // servo1.write(0); // servo3.write(180); // servo2.write(200); // servo4.write(180); // servo5.write(0); // delay(2000); // servo1.detach(); // servo3.detach(); // servo2.detach(); // servo4.detach(); // servo5.detach(); // delay(2000); © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2604
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 p-ISSN: 2395-0072 Volume: 09 Issue: 07 | Jul 2022 www.irjet.net In this project, we have designed and developed the lightweight 3D-printedprosthetic robotic hand which works on Arduino UNO, Servo motor, and EMG sensor. The Arduino board is programmed in such a way that the whole system is controlled to perform the daily life activities. This system helps the disabled person to overcome their obstacles in daily life and it also have many applications in manufacturing industries, the medical field, and many more.The proposed model is of low cost and the hardware components of the system are easily available. ACKNOWLEDGEMENT We would like to express our special thanks to our guide Scientist/Engineer ‘B’ Prashant Pal and co-guide Scientist/Engineer ‘C’ Saurabh Kesari for his advice and encouragement, which has greatly benefited this paper. We also thank National Institute of Electronics and Information Technology, Aurangabad for having all the necessary resources and facilities that significantly enhanced this manuscript with support and laboratory [2] Vaibhav Pawar, Sneha Bire, Shubham More, Komal More and Reshma Mule, “Review on Design and Development of Robotic Arm Generation-1”, International Journal of Innovative Science and Research Technology, pp.529, March 2018 [3] Tran Vanhuy, Dao Tuan Minh, Kien Nguyen Phan and Vu Anh Tran, “Simple Robotic Hand in Motion Using Arduino Controlled Servos”, International Journal of Science and Research (IJSR), pp. 972- 974, March 2017. [4] Kobayashi H, Ishida Y, Suzuki H, “Realization of all motion for the upper limb by a muscle suit”, IEEE International Workshop on Robot and Human Interactive Communication, Japan, September 2004 [5] Iason Batzianoulis, Aude Billard, Nili E. Krausz, Ann M. Simon & Levi Hargrove, “Decoding the grasping intention from electromyography during reaching motions” Batzianoulis et al. Journal of Neuro Engineering and Rehabilitation 2018 [6] J.B. Gupta, Electronic Devices and Circuits, S. K. Kataria & Sons, 2009 BIOGRAPHIES REFERENCES [1] Sivapong Nilwong, Delowar Hossain, Eneo Petoku, and Genci Capi “Development of Myoelectric Robotic Hand using 3D Printer“, 1st International Conference on Advances in Science, Engineering and Robotics Technology 2019 (JCASERT 2019) Usman Khan ,B.Tech 4th year (ESE) National Institute of Electronics and I.T,Aurangabad(Maharashtra), India Mainak Roy, B.Tech 4th year (ESE) National Institute of Electronics and I.T,Aurangabad(Maharashtra), India Prashant Pal, Scientist/Engineer ‘B’ National Institute of Electronics and I.T, Aurangabad(Maharashtra), India Saurabh Kesari, Scientist/Engineer ‘C’ National Institute of Electronics and I.T, Aurangabad(Maharashtra), India 7. CONCLUSION © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 2605