SlideShare una empresa de Scribd logo
1 de 5
Descargar para leer sin conexión
International Journal of Trend in Scientific Research and Development (IJTSRD)
Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470
@ IJTSRD | Unique Paper ID – IJTSRD27876 | Volume – 3 | Issue – 5 | July - August 2019 Page 2132
Deaf Sign Language using Automatic Hand Gesture
Robot Based on Microcontroller System
Hay Man Oo1, Khin Thandar Tun1, May Lwin Thant2
1Lecturer, 2Assistant Lecturer
1,2Department of Electronic Engineering, Technological University, Meiktila, Myanmar
How to cite this paper: Hay Man Oo |
Khin Thandar Tun | May LwinThant"Deaf
Sign Language using Automatic Hand
Gesture Robot
Based on
Microcontroller
System" Published
in International
Journal of Trend in
Scientific Research
and Development
(ijtsrd), ISSN: 2456-
6470, Volume-3 | Issue-5, August 2019,
pp.2132-2136,
https://doi.org/10.31142/ijtsrd27876
Copyright © 2019 by author(s) and
International Journal ofTrend inScientific
Research and
Development Journal.
This is an Open
Access article distributed undertheterms
of the Creative Commons Attribution
License (CC BY 4.0)
(http://creativecommons.org/licenses/by
/4.0)
ABSTRACT
Nowadays, the gesture is one of the most natural interaction methods of the
human being. In fact, a great percentage of the humancommunicationisbased
on visual communication ratherthanverbalcommunication.Therobot andthe
gesture device are connected wirelessly via Bluetooth modules. The wireless
communication enables the user to interact with the robot in a more friendly
way. Gesture controlled robot is a robot which has been controlled by simple
gestures. The user needs to wear a gesturedevicewhich includes a sensor.The
sensor records the movement of hand in a specific direction which results in
the movement of the robot in the respective direction. This robothelps people
with deafness and dumbness by showing hand gestures assigned English
alphabets. This paper discusses the design and implementation of deaf sign
language using automatic hand gesture robot using Bluetooth and Arduino
board.
KEYWORDS: Arduino UNO, ArduinoNANO, HC-05Bluetooth module, WTV-020SD
sound module, I2C module, Flex sensor, MG90S servo motor, servo driver, LCD, DC
convector, Speaker
I. INTRODUCTION
The communication between deafness and hearing person poses to be an
important disadvantage compared to communication between blind and
ancient visual people. Sign language is a way by which the gestures made bythe
user are used for communication.
The blind people speaks freely by implies that of ancient
language whereas thedumbhas ownmanual visual language
referred to as language. A dumb communication interpreter
is also a tool that interprets the hand gestures to sensibility
speech. In this system, the gestures are converted into text
message for communication. Basically there are two main
parts of this paper that are transmitter and receiver. Flex
sensors mainly attached on the glove. Main goals of the
system are to convert hand gestures to auditory speech for
communication between deaf and normal people and to
convert speech to readable text for communication between
deaf and normal people.
II. System Block Diagram
The user wears a glove with flex sensor. The gesture robot
made by the information is sending from the flex sensors.
The glove with flex sensors occurs at the transmitter end.
Gesture controlled robot works on the principle of flex
sensors which records hand movement and sends that data
to the Arduino which assigns proper voltage levels to the
recorded movement. The information is then transferred to
the Bluetooth module. The microcontroller processes make
these signals and encode it. These signals are transmitted to
the receiver end.
Fig1: Block Diagram of Automatic Hand Gesture
(Transmit)
On the receiving end, the information is received wirelessly
via the Bluetooth module and then passed onto the
microcontroller which takes various decisions based on the
received information. These decisions are passed to the
motor driver IC which triggers the motors in different
configurations to move the robot in a specific direction.
Then, Arduino also makes the decision such as displays on
Liquid Crystal Display (LCD) with alphabet and executes
sound in the following block diagram.
IJTSRD27876
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470
@ IJTSRD | Unique Paper ID – IJTSRD27876 | Volume – 3 | Issue – 5 | July - August 2019 Page 2133
Fig 2: Block Diagram of Robotic Hand Gesture
(Receive)
III. Implementation
A. Software Implementation
Software Implementation to Find Header ThumbFinger
(T) Character
c=bluetooth.find('T');
if(c=true)
{
T = bluetooth.parseInt();
Serial.print(T);
Serial.print(" ");
// pwm.setPWM(5, 0, pulseWidth(T));
}
It is to find header thumb finger (T) character. If T was not
found, result c is false and if it was found, result c is true. The
header T and servo angle integer are separated and showed
servo angle as integer. The servo is driven by using PWM
driver library "setPWM (servo pin,address,pwmvalue).
Software Implementation to Find Header Index Finger
(I) Character
c=bluetooth.find('I');
if(c=true)
{
I = bluetooth.parseInt();
Serial.print(I);
Serial.print(" ");
// pwm.setPWM(1, 0, pulseWidth(I))
}
This is to find header index finger (I) character. If I was not
found, result c is false and if it was found, result c is true. The
header I and servo angle integer are separated and showed
servo angle as integer. The servo is driven by using PWM
driver library "setPWM (servo pin,address,pwmvalue).
Software Implementation to Find Header Middle Finger
(M)) Character
c=bluetooth.find('M');
if(c=true)
{
M = bluetooth.parseInt();
Serial.print(M);
Serial.print(" ");
// pwm.setPWM(2, 0, pulselength(M));
This is to find header middle finger (M) character. If M was
not found, result c is false and if it was found, result c is true.
The header M and servo angle integer are separated and
showed servo angle as integer. The servo is driven by using
PWM driver library"setPWM (servopin,address,pwmvalue).
SoftwareImplementationtoFind HeaderRingFinger(R)
Character
c=bluetooth.find('R');
if(c=true)
{
R = bluetooth.parseInt();
Serial.print(R);
Serial.print(" ");
// pwm.setPWM(3, 0, pulseWidth(R));
}
This is to find header ring finger (R) character. If R was not
found, result c is false and if it was found, result c is true. The
header R and servo angle integer are separated and showed
servo angle as integer. The servo is driven by using PWM
driver library "setPWM (servo pin,address,pwmvalue).
Software Implementation to Find Header Pinkie
Finger(P) Character
c=bluetooth.find('P');
if(c=true)
{
P = bluetooth.parseInt();
Serial.print(P);
Serial.print(" ");
// pwm.setPWM(4, 0, pulseWidth(P));
}
This is to find header pinkie finger (P) character. IfP was not
found, result c is false and if it was found, result c is true. The
header P and servo angle integer are separated and showed
servo angle as integer. The servo is driven by using PWM
driver library "setPWM (servo pin,address,pwmvalue).
Software Implementation for Alphabet B
B alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
displayed alphabet on LCD.
if(T<50 && I>75 &&M>75 && R>75 && P>75)
{
lcd.print("B");
Serial.println ("B");
wtv020sd16p.asyncPlayVoice(1);
delay(1000);
wtv020sd16p.stopVoice();
lcd.clear();
}
Software Implementation for Alphabet D
D alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
displayed alphabet on LCD.
if(T<20 && I>65 &&M<20 && R<20 && P<20)
{
lcd.print("D");
Serial.println ("D");
wtv020sd16p.asyncPlayVoice(3);
wtv020sd16p.stopVoice();
delay(1000);
lcd.clear();
}
International Journal of Trend in Scientific Research and Development (IJTSRD)
@ IJTSRD | Unique Paper ID – IJTSRD27876
Software Implementation for Alphabet F
F alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
displayed alphabet on LCD.
if(T>20&&T<80 && I>=0&&I<50 &&M>60 && R>60 &&
P>60)
{
lcd.print("F");
Serial.println ("F");
wtv020sd16p.asyncPlayVoice(5);
wtv020sd16p.stopVoice();
delay(1000);
lcd.clear();
}
Software Implementation for Alphabet G
G alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be
displayed alphabet on LCD.
if(T>75 && I>65 &&M<20 && R<20 && P<20)
{
lcd.print("G");
Serial.println ("G");
wtv020sd16p.asyncPlayVoice(6);
wtv020sd16p.stopVoice();
delay(1000);
lcd.clear();
Software Implementation for Alphabet K
K alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
displayed alphabet on LCD.
if(T<75 && I>65 &&M>65 && R<20 && P<20)
{
lcd.print("K");
Serial.println ("K");
wtv020sd16p.asyncPlayVoice(10);
wtv020sd16p.stopVoice();
delay(1000);
lcd.clear();
B. Hardware Implementation
The design is used flex sensors to sense the motion of
fingers. It is five sensors that were arranged in a hand glove
which makes the sensors comfortable to wear.
mounted with flex sensors that changetheirresistancevalue
when bending. They are attached to one side of voltage
divider with resistor of a constant value on the other side.
The Arduino reads the voltage change when the sensors are
bent and triggers the servos to move a proportionalamount.
The side of robotic hand is used 12 V external power supply.
The analog values obtained from the flexible sensor are
transmitted to the robotic hand gesture side via Bluetooth
module. These values which are converted in
operation and then sent to the Arduino UNO platform
connected to the robotic hand via the Bluetoothmodule.The
Bluetooth modules are connected at the control glove
(human hand) and given the signal to the Arduino of robotic
hand. The Arduino UNO receives thesignals and executes the
signals with three main functions. In the first step, Arduino
UNO finds the header and separates the servo angle for
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com
27876 | Volume – 3 | Issue – 5 | July - August 2019
plementation for Alphabet F
F alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
&&M>60 && R>60 &&
Software Implementation for Alphabet G
G alphabet is displayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
&&M<20 && R<20 && P<20)
Software Implementation for Alphabet K
splayed on LCD and turned on voice sound.
Delay time is one second to stop voice sound and be clear
&&M>65 && R<20 && P<20)
The design is used flex sensors to sense the motion of
fingers. It is five sensors that were arranged in a hand glove
which makes the sensors comfortable to wear. The glove is
unted with flex sensors that changetheirresistancevalue
when bending. They are attached to one side of voltage
divider with resistor of a constant value on the other side.
The Arduino reads the voltage change when the sensors are
ervos to move a proportionalamount.
The side of robotic hand is used 12 V external power supply.
The analog values obtained from the flexible sensor are
transmitted to the robotic hand gesture side via Bluetooth
module. These values which are converted into digital
operation and then sent to the Arduino UNO platform
connected to the robotic hand via the Bluetoothmodule.The
Bluetooth modules are connected at the control glove
(human hand) and given the signal to the Arduino of robotic
O receives thesignals and executes the
signals with three main functions. In the first step, Arduino
UNO finds the header and separates the servo angle for
thumb, index, middle, ring and pinkie. Then the servo angle
passes the 16 channels PWM servo driv
driver rotates the servo motor by applying the pulse width
modulation. Therefore, the servo driver supported to the
current of servo motor which loaded current base on
required operated torque. Then, Arduino UNO executes the
sign language converted into English alphabets display on
LCD. Finally, Arduino UNO commands the sound module.
The sounds of alphabet are stored in 2 GB SD card that
installed on sound module and Arduino commands the
sound module to talk the speaker what received. The s
module of CLK pin is plugged in Arduino UNOofdigital pin 3,
the sound module of data pin is plugged in Arduino UNO of
digital pin 4, the sound module of busy pin is plugged in
Arduino UNO of digital pin 5 and reset pin is plugged in
Arduino UNO of digital pin 9. Main goals of the system are
that converting hand gestures into auditory speech for
communication to be readable text for communication
between deaf and normal people.
Fig 3: Circuit Diagram of Automatic Hand Gesture
(Transmit)
Fig 4: Circuit Diagram of Robotic Hand Gesture
(Receive)
IV. Results
Firstly, the flex sensors are powered from 9 V battery. The
side of the robotic hand supplies 12 V to the Arduino and
another supply to the step down power module. After the
flex sensors are power ON, the robotic hand was initializing
on the normal position. Fig 5 shows robotic hand gesture
under the power OFF state. The condition of robotic hand is
not ready for showing hand gesture in normal position.Fig 6
shows robotic hand gesture under the pow
robotic hand is ready for showing hand gesture when the
flex sensor is bending.
www.ijtsrd.com eISSN: 2456-6470
August 2019 Page 2134
thumb, index, middle, ring and pinkie. Then the servo angle
passes the 16 channels PWM servo driver and the servo
driver rotates the servo motor by applying the pulse width
modulation. Therefore, the servo driver supported to the
current of servo motor which loaded current base on
required operated torque. Then, Arduino UNO executes the
converted into English alphabets display on
LCD. Finally, Arduino UNO commands the sound module.
The sounds of alphabet are stored in 2 GB SD card that
installed on sound module and Arduino commands the
sound module to talk the speaker what received. The sound
module of CLK pin is plugged in Arduino UNOofdigital pin 3,
the sound module of data pin is plugged in Arduino UNO of
digital pin 4, the sound module of busy pin is plugged in
Arduino UNO of digital pin 5 and reset pin is plugged in
igital pin 9. Main goals of the system are
that converting hand gestures into auditory speech for
communication to be readable text for communication
between deaf and normal people.
Fig 3: Circuit Diagram of Automatic Hand Gesture
(Transmit)
Circuit Diagram of Robotic Hand Gesture
(Receive)
Firstly, the flex sensors are powered from 9 V battery. The
side of the robotic hand supplies 12 V to the Arduino and
another supply to the step down power module. After the
ON, the robotic hand was initializing
on the normal position. Fig 5 shows robotic hand gesture
under the power OFF state. The condition of robotic hand is
not ready for showing hand gesture in normal position.Fig 6
shows robotic hand gesture under the power ON state. The
robotic hand is ready for showing hand gesture when the
International Journal of Trend in Scientific Research and Development (IJTSRD)
@ IJTSRD | Unique Paper ID – IJTSRD27876
Fig 5: Robotic Hand Gesture under the Power OFF
State
Fig 6: Robotic Hand Gesture under the Power ON State
Testing for Alphabet B
This testing is alphabet B for the robotic hand and LCD.
Fig7: Testing Alphabet B
Testing for Alphabet D
This testing is alphabet D for the robotic hand and LCD.
Fig 8: Testing Alphabet D
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com
27876 | Volume – 3 | Issue – 5 | July - August 2019
Fig 5: Robotic Hand Gesture under the Power OFF
Fig 6: Robotic Hand Gesture under the Power ON State
alphabet B for the robotic hand and LCD.
Fig7: Testing Alphabet B
This testing is alphabet D for the robotic hand and LCD.
Fig 8: Testing Alphabet D
Testing for Alphabet F
This testing is alphabet F for the robotic hand
Fig 9: Testing Alphabet F
Testing for Alphabet G
This testing is alphabet F for the robotic hand and LCD.
Fig 10: Testing Alphabet G
Testing for Alphabet K
This testing is alphabet K for the robotic hand and LCD.
www.ijtsrd.com eISSN: 2456-6470
August 2019 Page 2135
This testing is alphabet F for the robotic hand and LCD.
Fig 9: Testing Alphabet F
This testing is alphabet F for the robotic hand and LCD.
Fig 10: Testing Alphabet G
This testing is alphabet K for the robotic hand and LCD.
International Journal of Trend in Scientific Research and Development (IJTSRD)
@ IJTSRD | Unique Paper ID – IJTSRD27876
Fig11: Testing Alphabet K
V. Conclusion
Sign language helps to bridge the gap between those who
can hear and those who cannot. All those people are not
understanding about this language. People use Bluetooth
device for the communication whose range is descent for
m. Hence, this device works wirelessly used foraround30m.
The design and construction of this device were properly
manufactured at a very low price with high usability. This is
a very noble approach to communicate bidirectional
between normal and disable person. This is very useful for
the disable person as with the help of this device. Theresults
of the flex sensor have also been displayed at the robotic
hand wirelessly using Bluetooth in future Wifi technology
that has been used to increase the range of the device.
International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com
27876 | Volume – 3 | Issue – 5 | July - August 2019
Testing Alphabet K
Sign language helps to bridge the gap between those who
can hear and those who cannot. All those people are not
People use Bluetooth
device for the communication whose range is descent for 30
m. Hence, this device works wirelessly used foraround30m.
The design and construction of this device were properly
manufactured at a very low price with high usability. This is
a very noble approach to communicate bidirectional
able person. This is very useful for
the disable person as with the help of this device. Theresults
of the flex sensor have also been displayed at the robotic
hand wirelessly using Bluetooth in future Wifi technology
ge of the device.
VI. REFERENCES
[1] Omer, K. and Mustafa, C. K.:
Copying Finger Motion,
[2] Saurabh A.: Implementation of Wireless Gesture
Controlled Robotic Arm, (2015).
[3] Das, A. K: Design and Realization of Prosthetic Hand
(2013).
[4] Michael, M. and Nicholas, W.:
(2011).
[5] Ramaiah, P. S.: Microcontroller Based Four Fingered
Robotic Hand, (2011).
[6] Matthias, R.: Wave like Egyptian Accelerometer Based
Gesture Recognition for Culture
(2007).
[7] Olawale, J.: Development of Microcontroller Based
Robotic Arm, (2007).
[8] Carrozza, M. C.: The Development of Novel Prosthetic
Hand-Ongoing Research and Preliminary Results,
(2002).
[9] Ambrose, R. O.: Biomimetic
Hand by Considering Structures of Human Finger
(2000).
www.ijtsrd.com eISSN: 2456-6470
August 2019 Page 2136
Omer, K. and Mustafa, C. K.: Robot Hand Making
Copying Finger Motion, (2016).
Implementation of Wireless Gesture
, (2015).
Design and Realization of Prosthetic Hand,
l, M. and Nicholas, W.: Arduino Cookbook,
Microcontroller Based Four Fingered
Wave like Egyptian Accelerometer Based
Gesture Recognition for Culture Specific Interactions,
elopment of Microcontroller Based
The Development of Novel Prosthetic
Ongoing Research and Preliminary Results,
BiomimeticComplianceControlofRobot
Hand by Considering Structures of Human Finger,

Más contenido relacionado

Similar a Deaf Sign Language using Automatic Hand Gesture Robot Based on Microcontroller System

IRJET- Smart Speaking Glove for Speech Impaired People
IRJET- Smart Speaking Glove for Speech Impaired PeopleIRJET- Smart Speaking Glove for Speech Impaired People
IRJET- Smart Speaking Glove for Speech Impaired PeopleIRJET Journal
 
IRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation Control
IRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation ControlIRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation Control
IRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation ControlIRJET Journal
 
Automatic Car Parking
Automatic Car ParkingAutomatic Car Parking
Automatic Car ParkingIRJET Journal
 
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...IRJET Journal
 
IRJET - Robot for Prescription Writing
IRJET -  	  Robot for Prescription WritingIRJET -  	  Robot for Prescription Writing
IRJET - Robot for Prescription WritingIRJET Journal
 
IRJET - Speaking System for Mute People
 IRJET -  	  Speaking System for Mute People IRJET -  	  Speaking System for Mute People
IRJET - Speaking System for Mute PeopleIRJET Journal
 
HAND GESTURE VOCALIZER
HAND GESTURE VOCALIZERHAND GESTURE VOCALIZER
HAND GESTURE VOCALIZERIRJET Journal
 
IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...
IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...
IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...IRJET Journal
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Editor IJARCET
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Editor IJARCET
 
Digital Tachometer using Aurdino
Digital Tachometer using AurdinoDigital Tachometer using Aurdino
Digital Tachometer using Aurdinoijtsrd
 
IRJET- Smart Hand Gloves for Disable People
IRJET-  	  Smart Hand Gloves for Disable PeopleIRJET-  	  Smart Hand Gloves for Disable People
IRJET- Smart Hand Gloves for Disable PeopleIRJET Journal
 
IRJET- Smart Trolley with Automated Billing System
IRJET- Smart Trolley with Automated Billing SystemIRJET- Smart Trolley with Automated Billing System
IRJET- Smart Trolley with Automated Billing SystemIRJET Journal
 
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoTIRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoTIRJET Journal
 
IRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled RobotIRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled RobotIRJET Journal
 
Garbage Monitoring System using Arduino
Garbage Monitoring System using ArduinoGarbage Monitoring System using Arduino
Garbage Monitoring System using Arduinoijtsrd
 
IRJET- Accident Detection and Alerting System
IRJET-  	  Accident Detection and Alerting SystemIRJET-  	  Accident Detection and Alerting System
IRJET- Accident Detection and Alerting SystemIRJET Journal
 
Gesture Control Robot using Arduino
Gesture Control Robot using ArduinoGesture Control Robot using Arduino
Gesture Control Robot using Arduinoijtsrd
 
IRJET - Boat Shrinking Alert System using IoT
IRJET -  	  Boat Shrinking Alert System using IoTIRJET -  	  Boat Shrinking Alert System using IoT
IRJET - Boat Shrinking Alert System using IoTIRJET Journal
 
IRJET - Android based Portable Hand Sign Recognition System
IRJET -  	  Android based Portable Hand Sign Recognition SystemIRJET -  	  Android based Portable Hand Sign Recognition System
IRJET - Android based Portable Hand Sign Recognition SystemIRJET Journal
 

Similar a Deaf Sign Language using Automatic Hand Gesture Robot Based on Microcontroller System (20)

IRJET- Smart Speaking Glove for Speech Impaired People
IRJET- Smart Speaking Glove for Speech Impaired PeopleIRJET- Smart Speaking Glove for Speech Impaired People
IRJET- Smart Speaking Glove for Speech Impaired People
 
IRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation Control
IRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation ControlIRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation Control
IRJET- Gesture Controlled Gloves for Gaming and Power Point Presentation Control
 
Automatic Car Parking
Automatic Car ParkingAutomatic Car Parking
Automatic Car Parking
 
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...IRJET -  	  Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
IRJET - Simulink based Real Time Blood Pressure and Body Tempraure Monitr...
 
IRJET - Robot for Prescription Writing
IRJET -  	  Robot for Prescription WritingIRJET -  	  Robot for Prescription Writing
IRJET - Robot for Prescription Writing
 
IRJET - Speaking System for Mute People
 IRJET -  	  Speaking System for Mute People IRJET -  	  Speaking System for Mute People
IRJET - Speaking System for Mute People
 
HAND GESTURE VOCALIZER
HAND GESTURE VOCALIZERHAND GESTURE VOCALIZER
HAND GESTURE VOCALIZER
 
IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...
IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...
IoT based Fire Intimation and Fire Extinguisher Robot with Call & Messages Al...
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397
 
Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397Ijarcet vol-2-issue-7-2389-2397
Ijarcet vol-2-issue-7-2389-2397
 
Digital Tachometer using Aurdino
Digital Tachometer using AurdinoDigital Tachometer using Aurdino
Digital Tachometer using Aurdino
 
IRJET- Smart Hand Gloves for Disable People
IRJET-  	  Smart Hand Gloves for Disable PeopleIRJET-  	  Smart Hand Gloves for Disable People
IRJET- Smart Hand Gloves for Disable People
 
IRJET- Smart Trolley with Automated Billing System
IRJET- Smart Trolley with Automated Billing SystemIRJET- Smart Trolley with Automated Billing System
IRJET- Smart Trolley with Automated Billing System
 
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoTIRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
 
IRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled RobotIRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled Robot
 
Garbage Monitoring System using Arduino
Garbage Monitoring System using ArduinoGarbage Monitoring System using Arduino
Garbage Monitoring System using Arduino
 
IRJET- Accident Detection and Alerting System
IRJET-  	  Accident Detection and Alerting SystemIRJET-  	  Accident Detection and Alerting System
IRJET- Accident Detection and Alerting System
 
Gesture Control Robot using Arduino
Gesture Control Robot using ArduinoGesture Control Robot using Arduino
Gesture Control Robot using Arduino
 
IRJET - Boat Shrinking Alert System using IoT
IRJET -  	  Boat Shrinking Alert System using IoTIRJET -  	  Boat Shrinking Alert System using IoT
IRJET - Boat Shrinking Alert System using IoT
 
IRJET - Android based Portable Hand Sign Recognition System
IRJET -  	  Android based Portable Hand Sign Recognition SystemIRJET -  	  Android based Portable Hand Sign Recognition System
IRJET - Android based Portable Hand Sign Recognition System
 

Más de ijtsrd

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementationijtsrd
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...ijtsrd
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospectsijtsrd
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...ijtsrd
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...ijtsrd
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...ijtsrd
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Studyijtsrd
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...ijtsrd
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...ijtsrd
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...ijtsrd
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...ijtsrd
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...ijtsrd
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadikuijtsrd
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...ijtsrd
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...ijtsrd
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Mapijtsrd
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Societyijtsrd
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...ijtsrd
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...ijtsrd
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learningijtsrd
 

Más de ijtsrd (20)

‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation‘Six Sigma Technique’ A Journey Through its Implementation
‘Six Sigma Technique’ A Journey Through its Implementation
 
Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...Edge Computing in Space Enhancing Data Processing and Communication for Space...
Edge Computing in Space Enhancing Data Processing and Communication for Space...
 
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and ProspectsDynamics of Communal Politics in 21st Century India Challenges and Prospects
Dynamics of Communal Politics in 21st Century India Challenges and Prospects
 
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
Assess Perspective and Knowledge of Healthcare Providers Towards Elehealth in...
 
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...The Impact of Digital Media on the Decentralization of Power and the Erosion ...
The Impact of Digital Media on the Decentralization of Power and the Erosion ...
 
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
Online Voices, Offline Impact Ambedkars Ideals and Socio Political Inclusion ...
 
Problems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A StudyProblems and Challenges of Agro Entreprenurship A Study
Problems and Challenges of Agro Entreprenurship A Study
 
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
Comparative Analysis of Total Corporate Disclosure of Selected IT Companies o...
 
The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...The Impact of Educational Background and Professional Training on Human Right...
The Impact of Educational Background and Professional Training on Human Right...
 
A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...A Study on the Effective Teaching Learning Process in English Curriculum at t...
A Study on the Effective Teaching Learning Process in English Curriculum at t...
 
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
The Role of Mentoring and Its Influence on the Effectiveness of the Teaching ...
 
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
Design Simulation and Hardware Construction of an Arduino Microcontroller Bas...
 
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. SadikuSustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
Sustainable Energy by Paul A. Adekunte | Matthew N. O. Sadiku | Janet O. Sadiku
 
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
Concepts for Sudan Survey Act Implementations Executive Regulations and Stand...
 
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
Towards the Implementation of the Sudan Interpolated Geoid Model Khartoum Sta...
 
Activating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment MapActivating Geospatial Information for Sudans Sustainable Investment Map
Activating Geospatial Information for Sudans Sustainable Investment Map
 
Educational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger SocietyEducational Unity Embracing Diversity for a Stronger Society
Educational Unity Embracing Diversity for a Stronger Society
 
Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...Integration of Indian Indigenous Knowledge System in Management Prospects and...
Integration of Indian Indigenous Knowledge System in Management Prospects and...
 
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
DeepMask Transforming Face Mask Identification for Better Pandemic Control in...
 
Streamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine LearningStreamlining Data Collection eCRF Design and Machine Learning
Streamlining Data Collection eCRF Design and Machine Learning
 

Último

Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfSanaAli374401
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfAyushMahapatra5
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...KokoStevan
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Shubhangi Sonawane
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 

Último (20)

Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Class 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdfClass 11th Physics NEET formula sheet pdf
Class 11th Physics NEET formula sheet pdf
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
Ecological Succession. ( ECOSYSTEM, B. Pharmacy, 1st Year, Sem-II, Environmen...
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 

Deaf Sign Language using Automatic Hand Gesture Robot Based on Microcontroller System

  • 1. International Journal of Trend in Scientific Research and Development (IJTSRD) Volume 3 Issue 5, August 2019 Available Online: www.ijtsrd.com e-ISSN: 2456 – 6470 @ IJTSRD | Unique Paper ID – IJTSRD27876 | Volume – 3 | Issue – 5 | July - August 2019 Page 2132 Deaf Sign Language using Automatic Hand Gesture Robot Based on Microcontroller System Hay Man Oo1, Khin Thandar Tun1, May Lwin Thant2 1Lecturer, 2Assistant Lecturer 1,2Department of Electronic Engineering, Technological University, Meiktila, Myanmar How to cite this paper: Hay Man Oo | Khin Thandar Tun | May LwinThant"Deaf Sign Language using Automatic Hand Gesture Robot Based on Microcontroller System" Published in International Journal of Trend in Scientific Research and Development (ijtsrd), ISSN: 2456- 6470, Volume-3 | Issue-5, August 2019, pp.2132-2136, https://doi.org/10.31142/ijtsrd27876 Copyright © 2019 by author(s) and International Journal ofTrend inScientific Research and Development Journal. This is an Open Access article distributed undertheterms of the Creative Commons Attribution License (CC BY 4.0) (http://creativecommons.org/licenses/by /4.0) ABSTRACT Nowadays, the gesture is one of the most natural interaction methods of the human being. In fact, a great percentage of the humancommunicationisbased on visual communication ratherthanverbalcommunication.Therobot andthe gesture device are connected wirelessly via Bluetooth modules. The wireless communication enables the user to interact with the robot in a more friendly way. Gesture controlled robot is a robot which has been controlled by simple gestures. The user needs to wear a gesturedevicewhich includes a sensor.The sensor records the movement of hand in a specific direction which results in the movement of the robot in the respective direction. This robothelps people with deafness and dumbness by showing hand gestures assigned English alphabets. This paper discusses the design and implementation of deaf sign language using automatic hand gesture robot using Bluetooth and Arduino board. KEYWORDS: Arduino UNO, ArduinoNANO, HC-05Bluetooth module, WTV-020SD sound module, I2C module, Flex sensor, MG90S servo motor, servo driver, LCD, DC convector, Speaker I. INTRODUCTION The communication between deafness and hearing person poses to be an important disadvantage compared to communication between blind and ancient visual people. Sign language is a way by which the gestures made bythe user are used for communication. The blind people speaks freely by implies that of ancient language whereas thedumbhas ownmanual visual language referred to as language. A dumb communication interpreter is also a tool that interprets the hand gestures to sensibility speech. In this system, the gestures are converted into text message for communication. Basically there are two main parts of this paper that are transmitter and receiver. Flex sensors mainly attached on the glove. Main goals of the system are to convert hand gestures to auditory speech for communication between deaf and normal people and to convert speech to readable text for communication between deaf and normal people. II. System Block Diagram The user wears a glove with flex sensor. The gesture robot made by the information is sending from the flex sensors. The glove with flex sensors occurs at the transmitter end. Gesture controlled robot works on the principle of flex sensors which records hand movement and sends that data to the Arduino which assigns proper voltage levels to the recorded movement. The information is then transferred to the Bluetooth module. The microcontroller processes make these signals and encode it. These signals are transmitted to the receiver end. Fig1: Block Diagram of Automatic Hand Gesture (Transmit) On the receiving end, the information is received wirelessly via the Bluetooth module and then passed onto the microcontroller which takes various decisions based on the received information. These decisions are passed to the motor driver IC which triggers the motors in different configurations to move the robot in a specific direction. Then, Arduino also makes the decision such as displays on Liquid Crystal Display (LCD) with alphabet and executes sound in the following block diagram. IJTSRD27876
  • 2. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com eISSN: 2456-6470 @ IJTSRD | Unique Paper ID – IJTSRD27876 | Volume – 3 | Issue – 5 | July - August 2019 Page 2133 Fig 2: Block Diagram of Robotic Hand Gesture (Receive) III. Implementation A. Software Implementation Software Implementation to Find Header ThumbFinger (T) Character c=bluetooth.find('T'); if(c=true) { T = bluetooth.parseInt(); Serial.print(T); Serial.print(" "); // pwm.setPWM(5, 0, pulseWidth(T)); } It is to find header thumb finger (T) character. If T was not found, result c is false and if it was found, result c is true. The header T and servo angle integer are separated and showed servo angle as integer. The servo is driven by using PWM driver library "setPWM (servo pin,address,pwmvalue). Software Implementation to Find Header Index Finger (I) Character c=bluetooth.find('I'); if(c=true) { I = bluetooth.parseInt(); Serial.print(I); Serial.print(" "); // pwm.setPWM(1, 0, pulseWidth(I)) } This is to find header index finger (I) character. If I was not found, result c is false and if it was found, result c is true. The header I and servo angle integer are separated and showed servo angle as integer. The servo is driven by using PWM driver library "setPWM (servo pin,address,pwmvalue). Software Implementation to Find Header Middle Finger (M)) Character c=bluetooth.find('M'); if(c=true) { M = bluetooth.parseInt(); Serial.print(M); Serial.print(" "); // pwm.setPWM(2, 0, pulselength(M)); This is to find header middle finger (M) character. If M was not found, result c is false and if it was found, result c is true. The header M and servo angle integer are separated and showed servo angle as integer. The servo is driven by using PWM driver library"setPWM (servopin,address,pwmvalue). SoftwareImplementationtoFind HeaderRingFinger(R) Character c=bluetooth.find('R'); if(c=true) { R = bluetooth.parseInt(); Serial.print(R); Serial.print(" "); // pwm.setPWM(3, 0, pulseWidth(R)); } This is to find header ring finger (R) character. If R was not found, result c is false and if it was found, result c is true. The header R and servo angle integer are separated and showed servo angle as integer. The servo is driven by using PWM driver library "setPWM (servo pin,address,pwmvalue). Software Implementation to Find Header Pinkie Finger(P) Character c=bluetooth.find('P'); if(c=true) { P = bluetooth.parseInt(); Serial.print(P); Serial.print(" "); // pwm.setPWM(4, 0, pulseWidth(P)); } This is to find header pinkie finger (P) character. IfP was not found, result c is false and if it was found, result c is true. The header P and servo angle integer are separated and showed servo angle as integer. The servo is driven by using PWM driver library "setPWM (servo pin,address,pwmvalue). Software Implementation for Alphabet B B alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear displayed alphabet on LCD. if(T<50 && I>75 &&M>75 && R>75 && P>75) { lcd.print("B"); Serial.println ("B"); wtv020sd16p.asyncPlayVoice(1); delay(1000); wtv020sd16p.stopVoice(); lcd.clear(); } Software Implementation for Alphabet D D alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear displayed alphabet on LCD. if(T<20 && I>65 &&M<20 && R<20 && P<20) { lcd.print("D"); Serial.println ("D"); wtv020sd16p.asyncPlayVoice(3); wtv020sd16p.stopVoice(); delay(1000); lcd.clear(); }
  • 3. International Journal of Trend in Scientific Research and Development (IJTSRD) @ IJTSRD | Unique Paper ID – IJTSRD27876 Software Implementation for Alphabet F F alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear displayed alphabet on LCD. if(T>20&&T<80 && I>=0&&I<50 &&M>60 && R>60 && P>60) { lcd.print("F"); Serial.println ("F"); wtv020sd16p.asyncPlayVoice(5); wtv020sd16p.stopVoice(); delay(1000); lcd.clear(); } Software Implementation for Alphabet G G alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be displayed alphabet on LCD. if(T>75 && I>65 &&M<20 && R<20 && P<20) { lcd.print("G"); Serial.println ("G"); wtv020sd16p.asyncPlayVoice(6); wtv020sd16p.stopVoice(); delay(1000); lcd.clear(); Software Implementation for Alphabet K K alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear displayed alphabet on LCD. if(T<75 && I>65 &&M>65 && R<20 && P<20) { lcd.print("K"); Serial.println ("K"); wtv020sd16p.asyncPlayVoice(10); wtv020sd16p.stopVoice(); delay(1000); lcd.clear(); B. Hardware Implementation The design is used flex sensors to sense the motion of fingers. It is five sensors that were arranged in a hand glove which makes the sensors comfortable to wear. mounted with flex sensors that changetheirresistancevalue when bending. They are attached to one side of voltage divider with resistor of a constant value on the other side. The Arduino reads the voltage change when the sensors are bent and triggers the servos to move a proportionalamount. The side of robotic hand is used 12 V external power supply. The analog values obtained from the flexible sensor are transmitted to the robotic hand gesture side via Bluetooth module. These values which are converted in operation and then sent to the Arduino UNO platform connected to the robotic hand via the Bluetoothmodule.The Bluetooth modules are connected at the control glove (human hand) and given the signal to the Arduino of robotic hand. The Arduino UNO receives thesignals and executes the signals with three main functions. In the first step, Arduino UNO finds the header and separates the servo angle for International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com 27876 | Volume – 3 | Issue – 5 | July - August 2019 plementation for Alphabet F F alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear &&M>60 && R>60 && Software Implementation for Alphabet G G alphabet is displayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear &&M<20 && R<20 && P<20) Software Implementation for Alphabet K splayed on LCD and turned on voice sound. Delay time is one second to stop voice sound and be clear &&M>65 && R<20 && P<20) The design is used flex sensors to sense the motion of fingers. It is five sensors that were arranged in a hand glove which makes the sensors comfortable to wear. The glove is unted with flex sensors that changetheirresistancevalue when bending. They are attached to one side of voltage divider with resistor of a constant value on the other side. The Arduino reads the voltage change when the sensors are ervos to move a proportionalamount. The side of robotic hand is used 12 V external power supply. The analog values obtained from the flexible sensor are transmitted to the robotic hand gesture side via Bluetooth module. These values which are converted into digital operation and then sent to the Arduino UNO platform connected to the robotic hand via the Bluetoothmodule.The Bluetooth modules are connected at the control glove (human hand) and given the signal to the Arduino of robotic O receives thesignals and executes the signals with three main functions. In the first step, Arduino UNO finds the header and separates the servo angle for thumb, index, middle, ring and pinkie. Then the servo angle passes the 16 channels PWM servo driv driver rotates the servo motor by applying the pulse width modulation. Therefore, the servo driver supported to the current of servo motor which loaded current base on required operated torque. Then, Arduino UNO executes the sign language converted into English alphabets display on LCD. Finally, Arduino UNO commands the sound module. The sounds of alphabet are stored in 2 GB SD card that installed on sound module and Arduino commands the sound module to talk the speaker what received. The s module of CLK pin is plugged in Arduino UNOofdigital pin 3, the sound module of data pin is plugged in Arduino UNO of digital pin 4, the sound module of busy pin is plugged in Arduino UNO of digital pin 5 and reset pin is plugged in Arduino UNO of digital pin 9. Main goals of the system are that converting hand gestures into auditory speech for communication to be readable text for communication between deaf and normal people. Fig 3: Circuit Diagram of Automatic Hand Gesture (Transmit) Fig 4: Circuit Diagram of Robotic Hand Gesture (Receive) IV. Results Firstly, the flex sensors are powered from 9 V battery. The side of the robotic hand supplies 12 V to the Arduino and another supply to the step down power module. After the flex sensors are power ON, the robotic hand was initializing on the normal position. Fig 5 shows robotic hand gesture under the power OFF state. The condition of robotic hand is not ready for showing hand gesture in normal position.Fig 6 shows robotic hand gesture under the pow robotic hand is ready for showing hand gesture when the flex sensor is bending. www.ijtsrd.com eISSN: 2456-6470 August 2019 Page 2134 thumb, index, middle, ring and pinkie. Then the servo angle passes the 16 channels PWM servo driver and the servo driver rotates the servo motor by applying the pulse width modulation. Therefore, the servo driver supported to the current of servo motor which loaded current base on required operated torque. Then, Arduino UNO executes the converted into English alphabets display on LCD. Finally, Arduino UNO commands the sound module. The sounds of alphabet are stored in 2 GB SD card that installed on sound module and Arduino commands the sound module to talk the speaker what received. The sound module of CLK pin is plugged in Arduino UNOofdigital pin 3, the sound module of data pin is plugged in Arduino UNO of digital pin 4, the sound module of busy pin is plugged in Arduino UNO of digital pin 5 and reset pin is plugged in igital pin 9. Main goals of the system are that converting hand gestures into auditory speech for communication to be readable text for communication between deaf and normal people. Fig 3: Circuit Diagram of Automatic Hand Gesture (Transmit) Circuit Diagram of Robotic Hand Gesture (Receive) Firstly, the flex sensors are powered from 9 V battery. The side of the robotic hand supplies 12 V to the Arduino and another supply to the step down power module. After the ON, the robotic hand was initializing on the normal position. Fig 5 shows robotic hand gesture under the power OFF state. The condition of robotic hand is not ready for showing hand gesture in normal position.Fig 6 shows robotic hand gesture under the power ON state. The robotic hand is ready for showing hand gesture when the
  • 4. International Journal of Trend in Scientific Research and Development (IJTSRD) @ IJTSRD | Unique Paper ID – IJTSRD27876 Fig 5: Robotic Hand Gesture under the Power OFF State Fig 6: Robotic Hand Gesture under the Power ON State Testing for Alphabet B This testing is alphabet B for the robotic hand and LCD. Fig7: Testing Alphabet B Testing for Alphabet D This testing is alphabet D for the robotic hand and LCD. Fig 8: Testing Alphabet D International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com 27876 | Volume – 3 | Issue – 5 | July - August 2019 Fig 5: Robotic Hand Gesture under the Power OFF Fig 6: Robotic Hand Gesture under the Power ON State alphabet B for the robotic hand and LCD. Fig7: Testing Alphabet B This testing is alphabet D for the robotic hand and LCD. Fig 8: Testing Alphabet D Testing for Alphabet F This testing is alphabet F for the robotic hand Fig 9: Testing Alphabet F Testing for Alphabet G This testing is alphabet F for the robotic hand and LCD. Fig 10: Testing Alphabet G Testing for Alphabet K This testing is alphabet K for the robotic hand and LCD. www.ijtsrd.com eISSN: 2456-6470 August 2019 Page 2135 This testing is alphabet F for the robotic hand and LCD. Fig 9: Testing Alphabet F This testing is alphabet F for the robotic hand and LCD. Fig 10: Testing Alphabet G This testing is alphabet K for the robotic hand and LCD.
  • 5. International Journal of Trend in Scientific Research and Development (IJTSRD) @ IJTSRD | Unique Paper ID – IJTSRD27876 Fig11: Testing Alphabet K V. Conclusion Sign language helps to bridge the gap between those who can hear and those who cannot. All those people are not understanding about this language. People use Bluetooth device for the communication whose range is descent for m. Hence, this device works wirelessly used foraround30m. The design and construction of this device were properly manufactured at a very low price with high usability. This is a very noble approach to communicate bidirectional between normal and disable person. This is very useful for the disable person as with the help of this device. Theresults of the flex sensor have also been displayed at the robotic hand wirelessly using Bluetooth in future Wifi technology that has been used to increase the range of the device. International Journal of Trend in Scientific Research and Development (IJTSRD) @ www.ijtsrd.com 27876 | Volume – 3 | Issue – 5 | July - August 2019 Testing Alphabet K Sign language helps to bridge the gap between those who can hear and those who cannot. All those people are not People use Bluetooth device for the communication whose range is descent for 30 m. Hence, this device works wirelessly used foraround30m. The design and construction of this device were properly manufactured at a very low price with high usability. This is a very noble approach to communicate bidirectional able person. This is very useful for the disable person as with the help of this device. Theresults of the flex sensor have also been displayed at the robotic hand wirelessly using Bluetooth in future Wifi technology ge of the device. VI. REFERENCES [1] Omer, K. and Mustafa, C. K.: Copying Finger Motion, [2] Saurabh A.: Implementation of Wireless Gesture Controlled Robotic Arm, (2015). [3] Das, A. K: Design and Realization of Prosthetic Hand (2013). [4] Michael, M. and Nicholas, W.: (2011). [5] Ramaiah, P. S.: Microcontroller Based Four Fingered Robotic Hand, (2011). [6] Matthias, R.: Wave like Egyptian Accelerometer Based Gesture Recognition for Culture (2007). [7] Olawale, J.: Development of Microcontroller Based Robotic Arm, (2007). [8] Carrozza, M. C.: The Development of Novel Prosthetic Hand-Ongoing Research and Preliminary Results, (2002). [9] Ambrose, R. O.: Biomimetic Hand by Considering Structures of Human Finger (2000). www.ijtsrd.com eISSN: 2456-6470 August 2019 Page 2136 Omer, K. and Mustafa, C. K.: Robot Hand Making Copying Finger Motion, (2016). Implementation of Wireless Gesture , (2015). Design and Realization of Prosthetic Hand, l, M. and Nicholas, W.: Arduino Cookbook, Microcontroller Based Four Fingered Wave like Egyptian Accelerometer Based Gesture Recognition for Culture Specific Interactions, elopment of Microcontroller Based The Development of Novel Prosthetic Ongoing Research and Preliminary Results, BiomimeticComplianceControlofRobot Hand by Considering Structures of Human Finger,