SlideShare a Scribd company logo
1 of 5
Download to read offline
International Journal of Engineering Research and Development
e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com
Volume 2, Issue 11 (August 2012), PP. 14-18


 Design and Implementation of Electronic Gesture Recognition
Unit Using Accelerometer to Control Robotic Arm Powered With
                       Cortex-M3 Core
         Mr. K Pavan Kumar1, Mr. N Abid Ali Khan2, Mr. V Karthik Reddy3
                      1
                       Vasavi College of Engg, Embedded Systems &VLSI Design, Hyderabad, India.
                        2
                          Vasavi College of Engg, Asst. Professor - Dept. of ECE, Hyderabad, India.
                           3
                            Phoenix Technologies & services, Design Engineer, Hyderabad, India.



Abstract––Mechatronics is one of the promising trends in the era of computing in today’s system automation industry
and control. The proposed project is one such attempt of designing an accelerometer based system to communicate with
an industrial robotic arm wirelessly. This project comprises of design and implementation of the robotic arm powered
with Cortex–M3 based LPC1768 core. The core has to be interfaced with DC motors of robotic arm to control the
movements of robotic arm. ADXL335 is a three dimensional accelerometer sensor used for this purpose, this
accelerometer sensor captures gestures of human-arm and produces three analog output voltages in three dimensional
axes. And two flex sensors are used to control the gripper movement. For different movements of accelerometer and flex
sensors corresponding characters will be sent to the Cortex-M3 core wirelessly using 2.4GHz RF module. And depending
on the received character robotic arm can be controlled in Dynamic or Static mode by communicating with EEPROM
using I2C protocol.

Keywords––Accelerometer, Robotic arm, Arduino, RF transceiver, CORTEX M-3, Networking.

                                             I.        INTRODUCTION
          More recently, industries have introduced more flexible forms of automation in the manufacturing cycle.
Programmable mechanical manipulators are now being used to perform such tasks as spot welding, spray painting, material
handling, and component assembly. Since computer controlled mechanical manipulators can be easily converted through
software to do a variety of tasks.




                                    Fig.1. Relative cost effectiveness of soft automation

           For very low production volumes, such as those occurring in small batch processing, manual labor is the most
cost-effective. As the production volume increases, there comes a point (v1) where robots become more cost-effective than
manual labor. As the production volume increases still further, it eventually reaches a point (v2) where hard automation
surpasses both manual labor and robots in cost-effectiveness. The curve in Fig.1 is the representative of general qualitative
trends, with the exact data dependent upon the characteristics of the unit being produced [1].
           Robots are generally used to perform unsafe, hazardous, highly repetitive, and unpleasant tasks. Most robots are
set up for an operation by the teach-and-repeat technique. In this mode, a trained operator (programmer) typically uses a
portable control device (a teach pendant) to teach a robot its task manually. This programming and controlling of movements
of robotic arm through the use of robot teach pendant is still a difficult and time consuming task that requires technical
expertise. Therefore, new and easier ways for robot programming are required. The aim is to develop a methodology with a
high level of abstraction that simplifies the robot programming [2].



                                                            14
Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic…

          In this paper we proposed an accelerometer-based gesture recognition system to control an industrial robot in a
natural way. A 3-axis wireless accelerometer is attached to the human arm, capturing its behavior (gestures and postures). A
trained system was used to recognize gestures and postures. Finally, several tests are done to evaluate the proposed system.

                                              II.       ARCHITECTURE
          Most of the industrial robots are still programmed using the typical teaching process, through the use of the robot
teach pendant. The proposed project is an accelerometer-based system to control an industrial robotic arm wirelessly using
3-axis accelerometers.




                                             Fig.2. Block Diagram of the System

           In the proposed project we are using KSR10 robotic arm. To control the different movements of this robotic arm
and gripper, we interface motors of the robotic arm to LPC1768 ARM CORTEX-M3 micro controller board through L293D
quadruple high-current half-H motor driver board. This LPC1768 micro controller supports frequencies up to 100MHz. So, it
can access the data from accelerometer with very high speed. EEPROM (24LC16B) is interfaced with the core to execute the
given instructions in static mode. And to receive data from accelerometer over wireless medium we will interface a 2.4GHz
RF transceiver module to LPC1768 board.
           ADXL335 board is a three axis accelerometer board [13]. It produces three different analog voltages (x, y &z) in
three dimensional motions according to the hand movement of the trainer. And we are also using two flex sensors to control
the gripper movement. Flex sensors are the sensors that change resistance depending on the amount of bend on the sensor,
and produces different analog voltage levels [4]. The voltages produced by accelerometer and flex sensors are converted into
digital form using Analog to Digital converter. Here we are using Atmega8 micro controller, which is having in-built six
channel 10-bit ADC. By configuring this in-built ADC we will convert analog signals into digital form. After interfacing
accelerometer, flex sensors to atmega8 micro controller, we have to observe & analyze the digitized data in serial monitor
for different positions of accelerometer and flex sensors. The converted digital data will be compared with observed values,
and if the data matches then corresponding character for that movement of accelerometer will be sent to the LPC1768 micro
controller wirelessly. For wireless transmission of data we are interfacing a 2.4GHz RF transceiver module to ATmega8
micro controller.
           At the receiver end, received characters will be transferred to the LPC1768 Core through UART communication
protocol [8]. For each received character, there will be a pre-defined movement in the LPC1768 which will be executed either
in dynamic mode or static mode depending on the select switch condition. To execute the instructions in static mode, we are
communication with EEPROM using I2C Protocol [10]. Micro controller cannot drive motors directly, hence we need to drive
the motors through L293D driver circuit. Each L293D can drive maximum of two motors, therefore we need three L293D
ICs to drive five motors of robotic arm.

                                               III.      ROBOTIC ARM
           A robotic arm is usually programmable, with similar functions to a human arm. The links of such a manipulator
are connected by joints allowing either rotational motion or translational (linear) displacement. This robotic arm includes
different parameters like weight of each linkage, weight of each joint, weight of object to lift, length of each linkage, degree
of freedom, work space.

                                                              15
Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic…




                                                     Fig.3. Robotic Arm

          In this project we are using KSR10, a five axes robotic arm. This kit comes with all mechanical modules which are
required to build the robotic arm, they are gears, links, motors, gripper, screws...etc. By using all these modules we have to
assemble the robotic arm [6]. As shown in Fig.3 it has five DC motors, all these DC motors are interfaced with LPC1768
CORTEX M3 core through L293D driver circuit.

                                       IV.       GESTURE RECOGNITION
          Accelerometer sensor is used for gesture recognition. An accelerometer is a device that measures the vibration, or
acceleration of motion and produces different voltage levels. The force caused by vibration or a change in motion
(acceleration) causes the mass which produces an electrical charge that is proportional to the force exerted upon it. Since the
charge is proportional to the force, and the mass is a constant, then the charge is also proportional to the acceleration [7].




                                                Fig.4.Transmitter flow chart

                                                             16
Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic…

           In this project we are using ADXL335 accelerometer which is a 3-dimensional accelerometer. This board measures
acceleration in three dimensions(X, Y&Z) and produces three different voltage levels. And we are also using two flex
sensors to control the gripper movement. Flex sensors are sensors that change in resistance depending on the amount of bend
on the sensor. They convert the change in bend to electrical resistance - the more the bend, the more the resistance value.
The output of accelerometer and flex sensor are analog in nature, to convert these analog signals into digital form, we are
using in-built ADC of Atmega8 micro controller [14].
           Here, Atmega8 micro controllers continuously read data from accelerometer & flex sensors, and convert them into
digital form. This digitized data is compared with the data which is already taken in the accelerometer& flex sensor analysis
part. And for every movement of accelerometer some characters are assigned. Now, in the comparison phase digitized data is
compared with the pre-defined ranges, and for matched range corresponding character will be transmitted through 2.4 GHz
RF transmitter.

                                   V.        CONTROLLING MECHANISM
          To control different movements of robotic arm we are using LPC1768 ARM CORTEX-M3 micro controller board.
The LPC1768 is an ARM Cortex-M3 based microcontroller for embedded applications featuring a high level of integration
and low power consumption. The ARM Cortex-M3 is a next generation core that offers system enhancements such as
enhanced debug features and a higher level of support block integration. This micro controller operates at up to a 100 MHz
CPU frequency and its CPU incorporates a 3-stage pipeline and uses Harvard architecture with separate local instruction and
data buses as well as a third bus for peripherals [8].




                                                 Fig.5.Receiver flow chart

          RF communication modules are set to 9600 baud rate to receive data [11]. LPC 1768 continuously checks the mode
select switch pin, if the pin is high, them the system will work in Dynamic mode i.e. System will give the movements for
current receiving values, if there is no received character then no movement will takes place. If the mode select switch is
LOW, then the system enters into static mode, in static mode again controller reads the train mode pin, if this pin is HIGH
then system enters into training mode where movements will takes place for received characters and simultaneously stores
received characters in EEPROM using I2C protocol. If train mode pin is LOW then simply system executes the already
stored instructions from EEPROM [10].

                                     VI.       EXPERIMENTAL RESULTS
           Our experiments were done mainly in three parts. In the first part, we tested the receiver module separately and
tested the success of controlling different movements by giving inputs from tera terminal (PC). In the second phase we tested
the transmitter module by connecting the transmitter output to tera terminal and observed the output for different movements
of accelerometer and flex sensors. Then we tested the complete system without the involvement of tera terminal. And we

                                                            17
Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic…

have also done experiments in Dynamic mode & Static mode. In Dynamic mode we are able to control the movements of
robotic arm by receiving instructions from accelerometer. In Static mode we have trained the system for twenty different
movements, and the system executed those twenty movements successfully and continuously.

                                 VII.       CONCLUSION & FUTURE SCOPE
          Growing demand for natural Human Machine Interfaces and robot easy programming platforms, a gesture
recognition system that allows users to control an industrial robotic arm was proposed and implemented successfully. A 3-
axis accelerometer was selected to be the input device of this system, capturing the human arm behavior to control the
robotic arm movement. And two flex sensors were used to control gripper movement. When compared with other common
input devices like teach pendant, this approach using accelerometers over wireless medium is more easy to work. Using this
system, a non-expert robot programmer can control a robot quickly and in a natural way. The low price and short set-up time
are other advantages of the system.
          Future work will build upon increasing the number of accelerometer movement which is possible through the use
of highly sensitive accelerometers. One approach might be the implementation of a gyroscope into the system, in order to
separate the acceleration due to gravity from the inertial acceleration. The use of more accelerometers attached to the arms is
another possibility.

                                                     REFERENCES
  [1].    Fundamentals of Robotics Analysis & Control by Robert J.Schilling
  [2].    Accelerometer-Based Control of an Industrial Robotic Arm Pedro Neto, J. Norberto Pires, Member, IEEE, and A.
          Paulo Moreira, Member, IEEE
  [3].    R. Dillmann, “Teaching and learning of robot tasks via observation of human performance,” in Robotics and
          Autonomous Systems
  [4].    http://www.sparkfun.com/tutorials/270
  [5].    J. Aleotti, A. Skoglund and T. Duckett, “Position teaching of a robot arm by demonstration with a wearable input
          device,” in International Conference on Intelligent Manipulation and Grasping (IMG04)
  [6].    http://www.esr.co.uk/manuals/ksr10.pdf
  [7].    K. Murakami, and H. Taguchi, “Gesture Recognition using Recurrent Neural Networks,” in Proceedings of ACM
          CHI’91Conference on Human Factors in Computing Systems
  [8].    http://www.nxp.com/documents/user_manual/UM10360.pdf
  [9].    S. Calinon, and A. Billard, “Active teaching in robot programming by demonstration,” in 16th IEEE International
          Symposium on Robot And Human interactive Communication
  [10].   http://www.pmb.co.nz/downloads/st_st24c02_data.pdf
  [11].   http://www.ti.com/lit/ds/symlink/cc2500.pdf
  [12].   Simple adaptive control of robot arm by Dave E.Goldberg, A.Galip Ulsoy, Y.Koren.
  [13].   http://www.analog.com/static/imported-files/data_sheets/ADXL335.pdf
  [14].   http://www.atmel.com/images/doc2486.pdf




                                                             18

More Related Content

What's hot

Gesture Controlled Robot
Gesture Controlled RobotGesture Controlled Robot
Gesture Controlled RobotSujit Singh
 
Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...
Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...
Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...IRJET Journal
 
Auto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between StationsAuto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between StationsMadhav Reddy Chintapalli
 
4. haptic robotic arm
4. haptic robotic arm4. haptic robotic arm
4. haptic robotic arm9935294733
 
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...IRJET Journal
 
Design and Implementation of Smart Docking and Recharging System for Defense ...
Design and Implementation of Smart Docking and Recharging System for Defense ...Design and Implementation of Smart Docking and Recharging System for Defense ...
Design and Implementation of Smart Docking and Recharging System for Defense ...IOSR Journals
 
Wireless gesture Controlled Robot
Wireless gesture Controlled RobotWireless gesture Controlled Robot
Wireless gesture Controlled RobotVIBEK MAURYA
 
IRJET- Digital Pen for Handicapped and Old Age People
IRJET- Digital Pen for Handicapped and Old Age PeopleIRJET- Digital Pen for Handicapped and Old Age People
IRJET- Digital Pen for Handicapped and Old Age PeopleIRJET Journal
 
Hand gesture controlled robot with arduino
Hand gesture controlled robot with arduinoHand gesture controlled robot with arduino
Hand gesture controlled robot with arduinoAnindyaAdhikary3
 
Flexible robotic hand
Flexible robotic hand Flexible robotic hand
Flexible robotic hand Nâhíd Alam
 
Gesture Controlled Car_Project report
Gesture Controlled Car_Project reportGesture Controlled Car_Project report
Gesture Controlled Car_Project reportAshikapokiya12345
 
Aacellerometer
AacellerometerAacellerometer
Aacellerometermukeshdeep
 
Assistive technologies for efficient mid range wireless transmission of elect...
Assistive technologies for efficient mid range wireless transmission of elect...Assistive technologies for efficient mid range wireless transmission of elect...
Assistive technologies for efficient mid range wireless transmission of elect...eSAT Journals
 
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual)  vatsal shah-ec_4th yearFloor cleaning robot(autonomus mannual)  vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th yearVatsal N Shah
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semVatsal N Shah
 
Experimental simulation and real world study on wi fi ad-hoc mode for differe...
Experimental simulation and real world study on wi fi ad-hoc mode for differe...Experimental simulation and real world study on wi fi ad-hoc mode for differe...
Experimental simulation and real world study on wi fi ad-hoc mode for differe...Nazmul Hossain Rakib
 
Arduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemArduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemMadhav Reddy Chintapalli
 
Gesture control robot using by Ardiuno
Gesture control robot using by ArdiunoGesture control robot using by Ardiuno
Gesture control robot using by ArdiunoSudhir Kumar
 

What's hot (19)

Gesture Controlled Robot
Gesture Controlled RobotGesture Controlled Robot
Gesture Controlled Robot
 
Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...
Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...
Design of Robotic Arm based on Hand Gesture Control System using Wireless Sen...
 
Auto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between StationsAuto Metro Train to Shuttle Between Stations
Auto Metro Train to Shuttle Between Stations
 
4. haptic robotic arm
4. haptic robotic arm4. haptic robotic arm
4. haptic robotic arm
 
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...IRJET -  	  Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
IRJET - Controlling 4 DOF Robotic ARM with 3-Axis Accelerometer and Flex ...
 
Design and Implementation of Smart Docking and Recharging System for Defense ...
Design and Implementation of Smart Docking and Recharging System for Defense ...Design and Implementation of Smart Docking and Recharging System for Defense ...
Design and Implementation of Smart Docking and Recharging System for Defense ...
 
Wireless gesture Controlled Robot
Wireless gesture Controlled RobotWireless gesture Controlled Robot
Wireless gesture Controlled Robot
 
IRJET- Digital Pen for Handicapped and Old Age People
IRJET- Digital Pen for Handicapped and Old Age PeopleIRJET- Digital Pen for Handicapped and Old Age People
IRJET- Digital Pen for Handicapped and Old Age People
 
Hand gesture controlled robot with arduino
Hand gesture controlled robot with arduinoHand gesture controlled robot with arduino
Hand gesture controlled robot with arduino
 
Flexible robotic hand
Flexible robotic hand Flexible robotic hand
Flexible robotic hand
 
Gesture Controlled Car_Project report
Gesture Controlled Car_Project reportGesture Controlled Car_Project report
Gesture Controlled Car_Project report
 
Aacellerometer
AacellerometerAacellerometer
Aacellerometer
 
Assistive technologies for efficient mid range wireless transmission of elect...
Assistive technologies for efficient mid range wireless transmission of elect...Assistive technologies for efficient mid range wireless transmission of elect...
Assistive technologies for efficient mid range wireless transmission of elect...
 
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual)  vatsal shah-ec_4th yearFloor cleaning robot(autonomus mannual)  vatsal shah-ec_4th year
Floor cleaning robot(autonomus mannual) vatsal shah-ec_4th year
 
Floor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th semFloor cleaning robot report vatsal shah_ec_7th sem
Floor cleaning robot report vatsal shah_ec_7th sem
 
Experimental simulation and real world study on wi fi ad-hoc mode for differe...
Experimental simulation and real world study on wi fi ad-hoc mode for differe...Experimental simulation and real world study on wi fi ad-hoc mode for differe...
Experimental simulation and real world study on wi fi ad-hoc mode for differe...
 
Arduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning SystemArduino Based Collision Prevention Warning System
Arduino Based Collision Prevention Warning System
 
Gesture control robot using by Ardiuno
Gesture control robot using by ArdiunoGesture control robot using by Ardiuno
Gesture control robot using by Ardiuno
 
B044020609
B044020609B044020609
B044020609
 

Similar to IJERD (www.ijerd.com) International Journal of Engineering Research and Development

A haptic feedback system based on leap motion controller for prosthetic hand ...
A haptic feedback system based on leap motion controller for prosthetic hand ...A haptic feedback system based on leap motion controller for prosthetic hand ...
A haptic feedback system based on leap motion controller for prosthetic hand ...IJECEIAES
 
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...IRJET Journal
 
IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...
IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...
IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...IRJET Journal
 
A Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition AlgorithmA Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition AlgorithmIOSR Journals
 
A Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition AlgorithmA Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition AlgorithmIOSR Journals
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic armeSAT Journals
 
A 5 Degree Feedback Control Robotic Arm (Haptic Arm)
A 5 Degree Feedback Control Robotic Arm (Haptic Arm)A 5 Degree Feedback Control Robotic Arm (Haptic Arm)
A 5 Degree Feedback Control Robotic Arm (Haptic Arm)paperpublications3
 
ArduinoBased Head GestureControlled Robot UsingWireless Communication
ArduinoBased Head GestureControlled Robot UsingWireless CommunicationArduinoBased Head GestureControlled Robot UsingWireless Communication
ArduinoBased Head GestureControlled Robot UsingWireless CommunicationIJERA Editor
 
Design and Implementation of Robot Arm Control Using LabVIEW and ARM Controller
Design and Implementation of Robot Arm Control Using LabVIEW and ARM ControllerDesign and Implementation of Robot Arm Control Using LabVIEW and ARM Controller
Design and Implementation of Robot Arm Control Using LabVIEW and ARM ControllerIOSR Journals
 
Autonomous Terrain Mapping Using COTS Hardware
Autonomous Terrain Mapping Using COTS HardwareAutonomous Terrain Mapping Using COTS Hardware
Autonomous Terrain Mapping Using COTS HardwareJames Anderson
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic armeSAT Publishing House
 
Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...
Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...
Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...IRJET Journal
 
DESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETER
DESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETERDESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETER
DESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETERIJCSEA Journal
 
Design and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robotDesign and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing roboteSAT Journals
 
Automation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based robotAutomation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based roboteSAT Journals
 
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor NetworkIRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor NetworkIRJET Journal
 

Similar to IJERD (www.ijerd.com) International Journal of Engineering Research and Development (20)

A haptic feedback system based on leap motion controller for prosthetic hand ...
A haptic feedback system based on leap motion controller for prosthetic hand ...A haptic feedback system based on leap motion controller for prosthetic hand ...
A haptic feedback system based on leap motion controller for prosthetic hand ...
 
[IJET-V1I4P11] Authors :Wai Mar Myint, Theingi
[IJET-V1I4P11] Authors :Wai Mar Myint, Theingi[IJET-V1I4P11] Authors :Wai Mar Myint, Theingi
[IJET-V1I4P11] Authors :Wai Mar Myint, Theingi
 
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...IRJET- 	  Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
IRJET- Mechanical Design and Fabrication of Hand Motion Controlled Robotic...
 
L41047379
L41047379L41047379
L41047379
 
IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...
IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...
IRJET- Design and Fabrication of PLC and SCADA based Robotic Arm for Material...
 
A Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition AlgorithmA Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition Algorithm
 
A Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition AlgorithmA Digital Pen with a Trajectory Recognition Algorithm
A Digital Pen with a Trajectory Recognition Algorithm
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic arm
 
A 5 Degree Feedback Control Robotic Arm (Haptic Arm)
A 5 Degree Feedback Control Robotic Arm (Haptic Arm)A 5 Degree Feedback Control Robotic Arm (Haptic Arm)
A 5 Degree Feedback Control Robotic Arm (Haptic Arm)
 
1569736195
15697361951569736195
1569736195
 
ArduinoBased Head GestureControlled Robot UsingWireless Communication
ArduinoBased Head GestureControlled Robot UsingWireless CommunicationArduinoBased Head GestureControlled Robot UsingWireless Communication
ArduinoBased Head GestureControlled Robot UsingWireless Communication
 
Design and Implementation of Robot Arm Control Using LabVIEW and ARM Controller
Design and Implementation of Robot Arm Control Using LabVIEW and ARM ControllerDesign and Implementation of Robot Arm Control Using LabVIEW and ARM Controller
Design and Implementation of Robot Arm Control Using LabVIEW and ARM Controller
 
Autonomous Terrain Mapping Using COTS Hardware
Autonomous Terrain Mapping Using COTS HardwareAutonomous Terrain Mapping Using COTS Hardware
Autonomous Terrain Mapping Using COTS Hardware
 
Design and operation of synchronized robotic arm
Design and operation of synchronized robotic armDesign and operation of synchronized robotic arm
Design and operation of synchronized robotic arm
 
Robotic Vehicle with Hand Motion Control Using a RF Module
Robotic Vehicle with Hand Motion Control Using a RF Module Robotic Vehicle with Hand Motion Control Using a RF Module
Robotic Vehicle with Hand Motion Control Using a RF Module
 
Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...
Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...
Design and Implementation of a Self-Balancing Two-Wheeled Robot Driven by a F...
 
DESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETER
DESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETERDESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETER
DESIGN AND DEVELOPMENT OF WRIST-TILT BASED PC CURSOR CONTROL USING ACCELEROMETER
 
Design and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robotDesign and development of touch screen controlled stairs climbing robot
Design and development of touch screen controlled stairs climbing robot
 
Automation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based robotAutomation in agriculture field using arm 7 based robot
Automation in agriculture field using arm 7 based robot
 
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor NetworkIRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
IRJET - Hand Gesture Controlled Smart Robots using Wireless Sensor Network
 

More from IJERD Editor

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksIJERD Editor
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEIJERD Editor
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...IJERD Editor
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’IJERD Editor
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignIJERD Editor
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationIJERD Editor
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...IJERD Editor
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRIJERD Editor
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingIJERD Editor
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string valueIJERD Editor
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...IJERD Editor
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeIJERD Editor
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...IJERD Editor
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraIJERD Editor
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...IJERD Editor
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...IJERD Editor
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingIJERD Editor
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...IJERD Editor
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart GridIJERD Editor
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderIJERD Editor
 

More from IJERD Editor (20)

A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service AttacksA Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
A Novel Method for Prevention of Bandwidth Distributed Denial of Service Attacks
 
MEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACEMEMS MICROPHONE INTERFACE
MEMS MICROPHONE INTERFACE
 
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...Influence of tensile behaviour of slab on the structural Behaviour of shear c...
Influence of tensile behaviour of slab on the structural Behaviour of shear c...
 
Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’Gold prospecting using Remote Sensing ‘A case study of Sudan’
Gold prospecting using Remote Sensing ‘A case study of Sudan’
 
Reducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding DesignReducing Corrosion Rate by Welding Design
Reducing Corrosion Rate by Welding Design
 
Router 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and VerificationRouter 1X3 – RTL Design and Verification
Router 1X3 – RTL Design and Verification
 
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
Active Power Exchange in Distributed Power-Flow Controller (DPFC) At Third Ha...
 
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVRMitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
Mitigation of Voltage Sag/Swell with Fuzzy Control Reduced Rating DVR
 
Study on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive ManufacturingStudy on the Fused Deposition Modelling In Additive Manufacturing
Study on the Fused Deposition Modelling In Additive Manufacturing
 
Spyware triggering system by particular string value
Spyware triggering system by particular string valueSpyware triggering system by particular string value
Spyware triggering system by particular string value
 
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
A Blind Steganalysis on JPEG Gray Level Image Based on Statistical Features a...
 
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid SchemeSecure Image Transmission for Cloud Storage System Using Hybrid Scheme
Secure Image Transmission for Cloud Storage System Using Hybrid Scheme
 
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
Application of Buckley-Leverett Equation in Modeling the Radius of Invasion i...
 
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web CameraGesture Gaming on the World Wide Web Using an Ordinary Web Camera
Gesture Gaming on the World Wide Web Using an Ordinary Web Camera
 
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
Hardware Analysis of Resonant Frequency Converter Using Isolated Circuits And...
 
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
Simulated Analysis of Resonant Frequency Converter Using Different Tank Circu...
 
Moon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF DxingMoon-bounce: A Boon for VHF Dxing
Moon-bounce: A Boon for VHF Dxing
 
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
“MS-Extractor: An Innovative Approach to Extract Microsatellites on „Y‟ Chrom...
 
Importance of Measurements in Smart Grid
Importance of Measurements in Smart GridImportance of Measurements in Smart Grid
Importance of Measurements in Smart Grid
 
Study of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powderStudy of Macro level Properties of SCC using GGBS and Lime stone powder
Study of Macro level Properties of SCC using GGBS and Lime stone powder
 

Recently uploaded

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking MenDelhi Call girls
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CVKhem
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEarley Information Science
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...Neo4j
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Scriptwesley chun
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...apidays
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?Igalia
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdfhans926745
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 

Recently uploaded (20)

Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men08448380779 Call Girls In Civil Lines Women Seeking Men
08448380779 Call Girls In Civil Lines Women Seeking Men
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptxEIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
EIS-Webinar-Prompt-Knowledge-Eng-2024-04-08.pptx
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...Workshop - Best of Both Worlds_ Combine  KG and Vector search for  enhanced R...
Workshop - Best of Both Worlds_ Combine KG and Vector search for enhanced R...
 
Automating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps ScriptAutomating Google Workspace (GWS) & more with Apps Script
Automating Google Workspace (GWS) & more with Apps Script
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf[2024]Digital Global Overview Report 2024 Meltwater.pdf
[2024]Digital Global Overview Report 2024 Meltwater.pdf
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 

IJERD (www.ijerd.com) International Journal of Engineering Research and Development

  • 1. International Journal of Engineering Research and Development e-ISSN: 2278-067X, p-ISSN: 2278-800X, www.ijerd.com Volume 2, Issue 11 (August 2012), PP. 14-18 Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic Arm Powered With Cortex-M3 Core Mr. K Pavan Kumar1, Mr. N Abid Ali Khan2, Mr. V Karthik Reddy3 1 Vasavi College of Engg, Embedded Systems &VLSI Design, Hyderabad, India. 2 Vasavi College of Engg, Asst. Professor - Dept. of ECE, Hyderabad, India. 3 Phoenix Technologies & services, Design Engineer, Hyderabad, India. Abstract––Mechatronics is one of the promising trends in the era of computing in today’s system automation industry and control. The proposed project is one such attempt of designing an accelerometer based system to communicate with an industrial robotic arm wirelessly. This project comprises of design and implementation of the robotic arm powered with Cortex–M3 based LPC1768 core. The core has to be interfaced with DC motors of robotic arm to control the movements of robotic arm. ADXL335 is a three dimensional accelerometer sensor used for this purpose, this accelerometer sensor captures gestures of human-arm and produces three analog output voltages in three dimensional axes. And two flex sensors are used to control the gripper movement. For different movements of accelerometer and flex sensors corresponding characters will be sent to the Cortex-M3 core wirelessly using 2.4GHz RF module. And depending on the received character robotic arm can be controlled in Dynamic or Static mode by communicating with EEPROM using I2C protocol. Keywords––Accelerometer, Robotic arm, Arduino, RF transceiver, CORTEX M-3, Networking. I. INTRODUCTION More recently, industries have introduced more flexible forms of automation in the manufacturing cycle. Programmable mechanical manipulators are now being used to perform such tasks as spot welding, spray painting, material handling, and component assembly. Since computer controlled mechanical manipulators can be easily converted through software to do a variety of tasks. Fig.1. Relative cost effectiveness of soft automation For very low production volumes, such as those occurring in small batch processing, manual labor is the most cost-effective. As the production volume increases, there comes a point (v1) where robots become more cost-effective than manual labor. As the production volume increases still further, it eventually reaches a point (v2) where hard automation surpasses both manual labor and robots in cost-effectiveness. The curve in Fig.1 is the representative of general qualitative trends, with the exact data dependent upon the characteristics of the unit being produced [1]. Robots are generally used to perform unsafe, hazardous, highly repetitive, and unpleasant tasks. Most robots are set up for an operation by the teach-and-repeat technique. In this mode, a trained operator (programmer) typically uses a portable control device (a teach pendant) to teach a robot its task manually. This programming and controlling of movements of robotic arm through the use of robot teach pendant is still a difficult and time consuming task that requires technical expertise. Therefore, new and easier ways for robot programming are required. The aim is to develop a methodology with a high level of abstraction that simplifies the robot programming [2]. 14
  • 2. Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic… In this paper we proposed an accelerometer-based gesture recognition system to control an industrial robot in a natural way. A 3-axis wireless accelerometer is attached to the human arm, capturing its behavior (gestures and postures). A trained system was used to recognize gestures and postures. Finally, several tests are done to evaluate the proposed system. II. ARCHITECTURE Most of the industrial robots are still programmed using the typical teaching process, through the use of the robot teach pendant. The proposed project is an accelerometer-based system to control an industrial robotic arm wirelessly using 3-axis accelerometers. Fig.2. Block Diagram of the System In the proposed project we are using KSR10 robotic arm. To control the different movements of this robotic arm and gripper, we interface motors of the robotic arm to LPC1768 ARM CORTEX-M3 micro controller board through L293D quadruple high-current half-H motor driver board. This LPC1768 micro controller supports frequencies up to 100MHz. So, it can access the data from accelerometer with very high speed. EEPROM (24LC16B) is interfaced with the core to execute the given instructions in static mode. And to receive data from accelerometer over wireless medium we will interface a 2.4GHz RF transceiver module to LPC1768 board. ADXL335 board is a three axis accelerometer board [13]. It produces three different analog voltages (x, y &z) in three dimensional motions according to the hand movement of the trainer. And we are also using two flex sensors to control the gripper movement. Flex sensors are the sensors that change resistance depending on the amount of bend on the sensor, and produces different analog voltage levels [4]. The voltages produced by accelerometer and flex sensors are converted into digital form using Analog to Digital converter. Here we are using Atmega8 micro controller, which is having in-built six channel 10-bit ADC. By configuring this in-built ADC we will convert analog signals into digital form. After interfacing accelerometer, flex sensors to atmega8 micro controller, we have to observe & analyze the digitized data in serial monitor for different positions of accelerometer and flex sensors. The converted digital data will be compared with observed values, and if the data matches then corresponding character for that movement of accelerometer will be sent to the LPC1768 micro controller wirelessly. For wireless transmission of data we are interfacing a 2.4GHz RF transceiver module to ATmega8 micro controller. At the receiver end, received characters will be transferred to the LPC1768 Core through UART communication protocol [8]. For each received character, there will be a pre-defined movement in the LPC1768 which will be executed either in dynamic mode or static mode depending on the select switch condition. To execute the instructions in static mode, we are communication with EEPROM using I2C Protocol [10]. Micro controller cannot drive motors directly, hence we need to drive the motors through L293D driver circuit. Each L293D can drive maximum of two motors, therefore we need three L293D ICs to drive five motors of robotic arm. III. ROBOTIC ARM A robotic arm is usually programmable, with similar functions to a human arm. The links of such a manipulator are connected by joints allowing either rotational motion or translational (linear) displacement. This robotic arm includes different parameters like weight of each linkage, weight of each joint, weight of object to lift, length of each linkage, degree of freedom, work space. 15
  • 3. Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic… Fig.3. Robotic Arm In this project we are using KSR10, a five axes robotic arm. This kit comes with all mechanical modules which are required to build the robotic arm, they are gears, links, motors, gripper, screws...etc. By using all these modules we have to assemble the robotic arm [6]. As shown in Fig.3 it has five DC motors, all these DC motors are interfaced with LPC1768 CORTEX M3 core through L293D driver circuit. IV. GESTURE RECOGNITION Accelerometer sensor is used for gesture recognition. An accelerometer is a device that measures the vibration, or acceleration of motion and produces different voltage levels. The force caused by vibration or a change in motion (acceleration) causes the mass which produces an electrical charge that is proportional to the force exerted upon it. Since the charge is proportional to the force, and the mass is a constant, then the charge is also proportional to the acceleration [7]. Fig.4.Transmitter flow chart 16
  • 4. Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic… In this project we are using ADXL335 accelerometer which is a 3-dimensional accelerometer. This board measures acceleration in three dimensions(X, Y&Z) and produces three different voltage levels. And we are also using two flex sensors to control the gripper movement. Flex sensors are sensors that change in resistance depending on the amount of bend on the sensor. They convert the change in bend to electrical resistance - the more the bend, the more the resistance value. The output of accelerometer and flex sensor are analog in nature, to convert these analog signals into digital form, we are using in-built ADC of Atmega8 micro controller [14]. Here, Atmega8 micro controllers continuously read data from accelerometer & flex sensors, and convert them into digital form. This digitized data is compared with the data which is already taken in the accelerometer& flex sensor analysis part. And for every movement of accelerometer some characters are assigned. Now, in the comparison phase digitized data is compared with the pre-defined ranges, and for matched range corresponding character will be transmitted through 2.4 GHz RF transmitter. V. CONTROLLING MECHANISM To control different movements of robotic arm we are using LPC1768 ARM CORTEX-M3 micro controller board. The LPC1768 is an ARM Cortex-M3 based microcontroller for embedded applications featuring a high level of integration and low power consumption. The ARM Cortex-M3 is a next generation core that offers system enhancements such as enhanced debug features and a higher level of support block integration. This micro controller operates at up to a 100 MHz CPU frequency and its CPU incorporates a 3-stage pipeline and uses Harvard architecture with separate local instruction and data buses as well as a third bus for peripherals [8]. Fig.5.Receiver flow chart RF communication modules are set to 9600 baud rate to receive data [11]. LPC 1768 continuously checks the mode select switch pin, if the pin is high, them the system will work in Dynamic mode i.e. System will give the movements for current receiving values, if there is no received character then no movement will takes place. If the mode select switch is LOW, then the system enters into static mode, in static mode again controller reads the train mode pin, if this pin is HIGH then system enters into training mode where movements will takes place for received characters and simultaneously stores received characters in EEPROM using I2C protocol. If train mode pin is LOW then simply system executes the already stored instructions from EEPROM [10]. VI. EXPERIMENTAL RESULTS Our experiments were done mainly in three parts. In the first part, we tested the receiver module separately and tested the success of controlling different movements by giving inputs from tera terminal (PC). In the second phase we tested the transmitter module by connecting the transmitter output to tera terminal and observed the output for different movements of accelerometer and flex sensors. Then we tested the complete system without the involvement of tera terminal. And we 17
  • 5. Design and Implementation of Electronic Gesture Recognition Unit Using Accelerometer to Control Robotic… have also done experiments in Dynamic mode & Static mode. In Dynamic mode we are able to control the movements of robotic arm by receiving instructions from accelerometer. In Static mode we have trained the system for twenty different movements, and the system executed those twenty movements successfully and continuously. VII. CONCLUSION & FUTURE SCOPE Growing demand for natural Human Machine Interfaces and robot easy programming platforms, a gesture recognition system that allows users to control an industrial robotic arm was proposed and implemented successfully. A 3- axis accelerometer was selected to be the input device of this system, capturing the human arm behavior to control the robotic arm movement. And two flex sensors were used to control gripper movement. When compared with other common input devices like teach pendant, this approach using accelerometers over wireless medium is more easy to work. Using this system, a non-expert robot programmer can control a robot quickly and in a natural way. The low price and short set-up time are other advantages of the system. Future work will build upon increasing the number of accelerometer movement which is possible through the use of highly sensitive accelerometers. One approach might be the implementation of a gyroscope into the system, in order to separate the acceleration due to gravity from the inertial acceleration. The use of more accelerometers attached to the arms is another possibility. REFERENCES [1]. Fundamentals of Robotics Analysis & Control by Robert J.Schilling [2]. Accelerometer-Based Control of an Industrial Robotic Arm Pedro Neto, J. Norberto Pires, Member, IEEE, and A. Paulo Moreira, Member, IEEE [3]. R. Dillmann, “Teaching and learning of robot tasks via observation of human performance,” in Robotics and Autonomous Systems [4]. http://www.sparkfun.com/tutorials/270 [5]. J. Aleotti, A. Skoglund and T. Duckett, “Position teaching of a robot arm by demonstration with a wearable input device,” in International Conference on Intelligent Manipulation and Grasping (IMG04) [6]. http://www.esr.co.uk/manuals/ksr10.pdf [7]. K. Murakami, and H. Taguchi, “Gesture Recognition using Recurrent Neural Networks,” in Proceedings of ACM CHI’91Conference on Human Factors in Computing Systems [8]. http://www.nxp.com/documents/user_manual/UM10360.pdf [9]. S. Calinon, and A. Billard, “Active teaching in robot programming by demonstration,” in 16th IEEE International Symposium on Robot And Human interactive Communication [10]. http://www.pmb.co.nz/downloads/st_st24c02_data.pdf [11]. http://www.ti.com/lit/ds/symlink/cc2500.pdf [12]. Simple adaptive control of robot arm by Dave E.Goldberg, A.Galip Ulsoy, Y.Koren. [13]. http://www.analog.com/static/imported-files/data_sheets/ADXL335.pdf [14]. http://www.atmel.com/images/doc2486.pdf 18