SlideShare uma empresa Scribd logo
1 de 4
Baixar para ler offline
Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and
                    Applications (IJERA) ISSN: 2248-9622 www.ijera.com
                          Vol. 2, Issue 4, June-July 2012, pp.832-835
    MEMS Accelerometer Based Gesture Controlled Java Music
                           Player
                       Dileep Chappidi*, Lavanya Thunuguntla**
                    *B.Tech Final Year Student, Department of ECE HITAM, A.P (India)
                      ** Associate Professor, Department of ECE, HITAM, A.P (India)


Abstract
         In this project we are using the MEMS         LITERATURE SURVEY
Accelerometer MMA7660 IC. This gives the three                   The MMA7660FC is a ±1.5 g 3-Axis
dimensions (x, y, and z) readings of a particular      Accelerometer with Digital Output (I2C). It is a very
object. So if we move any object in any direction      low power, low profile capacitive MEMS sensor
then the corresponding values are noted by the         featuring a low pass filter, compensation for 0g offset
accelerometer. Most of the music players are           and gain errors, and conversion to 6-bit digital values
controlled through the remote controls which           at user configurable samples per second. The device
contain buttons. But through embedding the             can be used for sensor data changes, product
MEMS Accelerometer we can make music player            orientation, and gesture detection through an interrupt
can control by gesture performance in the air. The     pin (INT). The device is housed in a small 3mm x
application of this three axis accelerometer           3mm x 0.9mm DFN package.
together with suitable interfacing with the ARM7
micro controller and the music player                           The Free scale Accelerometer consists of a
development through coding in java which could         MEMS capacitive sensing g-cell and a signal
recognize the hyper terminal input instructions        conditioning ASIC contained in a single package.
can perform functions like play, stop, play back       The sensing element is sealed hermetically at the
and play forward of music player controlled by         wafer level using a bulk micro machined cap wafer.
gesture. We need to move the MMA                       The g-cell is a mechanical structure formed from
accelerometer in a particular set of directions then   semi conductor materials (poly silicon) using
it will recognize one of the directions like           masking and etching processes. The sensor can be
REWIND, FORWARD, PLAY and STOP and                     modeled as a movable beam that moves between two
operate the songs present in the list of music         mechanically fixed beams. Two gaps are formed; one
system.                                                being between the movable beam and the first
                                                       stationary beam and the second between the movable
Index Terms: MEMS, Accelerometer, MMA                  beam and the second stationary beam. The ASIC uses
7660, ARM 7, LCD, PC, Music Player, Gesture,           switched capacitor techniques to measure the g-cell
Java.                                                  capacitors and extract the acceleration data from the
                                                       difference between the two capacitors. The ASIC
INTRODUCTION                                           also signal conditions and filters (switched capacitor)
         In this project we are using MMA              the signal, providing a digital output that is
accelerometer sensor i.e., MMA-7660 which is a low     proportional to acceleration.
power, low profile capacitive 3-axis accelerometer
commonly called as free fall detection sensor.
Because of a sleep mode pin on the accelerometer
makes it ideal for the handheld battery powered
electronics.
         The player is coded in Java using Java
media frame work which recognizes the port list from             MMA7660FC gives the customer the
the hyper terminal devices connected and reads the     capability to do orientation detection for such
commands coming from the RS-232 interface to the       applications as Portrait/Landscape in Mobile
corresponding port. The program memory of the Arm      Phone/PDA/ PMP. The tilt orientation of the device
controller is coded in such a way that it recognizes   is in 3 dimensions and is identified in its last known
the values in the tilt register of the MMA             static position. This enables a product to set its
accelerometer and sends the commands of Play, Stop,    display orientation appropriately to              either
forward and rewind to the hyper terminal port          portrait/landscape mode, or to turn off the display if
connected through the Rs- 232 interface.               the product is placed upside down. The sensor
                                                       provides six different positions including: Left,
                                                       Right, Up, Down, Back, and Front. In Measurement


                                                                                               832 | P a g e
Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and
                    Applications (IJERA) ISSN: 2248-9622 www.ijera.com
                          Vol. 2, Issue 4, June-July 2012, pp.832-835
Mode the data is processed and updates the                         The MMA accelerometer consists of a tilt
orientation positions in the TILT (0x03) register. At     register which give the orientation logic of the
each measurement interval, it computes new values         gesture. First the values are defined for the gesture
for Left, Right, Up, Down, Back, and Front but it         performance and these values are fixed to the
does not automatically update these bits in the TILT      commands of the player.
(0x03) register. These values are updated depending                The Arm controller is processed in such a
on the de bounce filter settings (SR Register 0x08)       way that depending up on the orientation logic
configured by the customer.                               performed by the accelerometer the tilt values keep
                                                          on changing. These values are read through the SCL,
     In order to give the customer the ability to         SDA and the INT lines which are interfaced to one of
configure the de bounce filter, specific to their         the port in Arm controller LPC 2148. Apart from
application, they can change the following bits in the    sending the commands to the hyper terminal the
SR (0x08) register, FILT [2:0]. Please see below for a    commands are also displayed on the LCD interfaced
more detailed explanation of how the FILT [2:0]           to the Arm 7 micro controller with the help of
works in conjunction with updating the TILT (0x03)        internal LCD commands.
register:
• If FILT[2:0] = 000, then the new values for Left,       INTERFACING BETWEEN THE MODULES
Right, Up, Down, Back, and Front are updated in the                 PC is connected to the UART 0, SCL is
TILT (0x03) register after every reading without any      connected to the P0.2, SDA is connected to the P0.3,
further analysis.                                         and INT is connected to the port P0.1. These three
• If FILT[2:0] = 001 – 111, then the sensor requires      pins can be connected to any of the pins in the
the computed values for Left, Right, Up, Down,            controller and as per the connections the code and
Back, and Front to be the same from 1-7 consecutive       logic are maintained. The figure below shows the
readings (depending on the value in FILT[2:0],            interfacing of the MMA accelerometer to micro
before updating the values stored in TILT (0x03)          controller unit.
register. The de bounce counter is reset after a
mismatched reading or the TILT (0x03) register is
updated (if the orientation condition is met).

I. BLOCK DIAGRAM EXPLANATION




                                                          Fig 2: Interfacing of MMA 7660 to MCU

                                                                    The interfacing between the LCD and the
                                                          Arm 7 microcontroller is done through four data
                                                          lines. The 8 bit data of the commands are divided in
                                                          to two four bit data and passed through the four
                                                          interfaced lines of the LCD and one of Arm 7
Fig 1: Block diagram of MMA Controlled Music              microcontroller port. The other two pins are
Player                                                    dedicated for RS and EN pins of LCD. The
                                                          interfacing of LCD module to MCU is shown in the
          In this project we required operating voltage   figure below:
for ARM controller board is 12V. Hence the 12V
D.C. power supply is needed for the ARM board.
This regulated 12V is generated by stepping down
the voltage from 230V to 18V now the step downed
AC voltage is being rectified by the Bridge Rectifier
using 1N4007 diodes. The rectified AC voltage is
now filtered using a ‘C’ filter. Now the rectified,
filtered D.C. voltage is fed to the Voltage Regulator.
          This voltage regulator provides/allows us to
have a Regulated constant Voltage which is of +12V.
The rectified; filtered and regulated voltage is again
filtered for ripples using an electrolytic capacitor
100μF. Now the output from this section is fed to
microcontroller board to supply operating voltage.


                                                                                                833 | P a g e
Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and
                        Applications (IJERA) ISSN: 2248-9622 www.ijera.com
                              Vol. 2, Issue 4, June-July 2012, pp.832-835
Fig 3: Interfacing of LCD to MCU                      CONCLUSION
                                                                    The project “Development of Music player
PROJECT WORKING                                            in Java and controlling it through the gesture
          This project involves the development of the     performance with the help of MEMS
music player in java. For the working of the project       Accelerometer” has been successfully designed and
the minimum prerequisites for the player                   tested.
development are, java development kit has to be                     Integrating features of all the hardware
installed and the java media frame work which is a         components used have developed it. Presence of
Java library that enables audio, video and other time-     every module has been reasoned out and placed
based media to be added to Java applications and           carefully thus contributing to the best working of the
applets. This optional library package, which can          unit.
capture, play and stream the multimedia applications,               Secondly, using highly advanced IC’s and
has also to be installed in the PC. The code is written    with the help of growing technology the project has
with the appropriate logical conditions with a better      been successfully implemented.
exception handling cases and build using the java
compiler. The code thus build generates the                RESULTS AND DISCUSSIONS
following files:                                                     The purpose of the project to operate an
 comm.jar (available in lib folder of the project)         MP3 Player by our gesture performance in the air by
 javax.comm.properties and win32com.dll (available         using MEMS Sensor is achieved. Experiment shows
in dll folder of the project)                              the application of three-axis accelerometer which can
       Put         win32com.dll       in   C:/Program     realize the functions like play, stop, play back and
           Files/javasoft/jre/bin                          play forward of MP3 player controlled by gesture.
       Put javax.comm.properties in C:/program            The applications of this project could be done at
           files/javasoft/jre/lib                               1. Homes
       Put          comm.jar         in    C:/program          2. Parties
           files/javasoft/jre/lib/ext                           3. Functions, etc...
          The gesture recognized by the MEMS with                    The future enhancement of this project is to
the help of the x, y and z co-ordinate values can be       integrate the MEMS Accelerometer device in to
read through the tilt register with the address location   Nano scale IC which could be easily operated
of (0x03) register. The data from the Tilt register is     through embedding the IC in to any electronic
sent through the SDA line of the MMA 7660 to the           gadgets.
MCU. The code logic for operating the player is                 The result of the project is shown in the below
written in the Arm 7 LPC 2148 micro controller             pictures:
which is shown below:
while(1)
{mask=IOPIN0 & 0X00000002 ;
if(mask==0x00000000)
{x=i2cgetc(0x03);
 y=x&0x40;
 if(y==0x00)
{
y=x&0x1c;
if(y==0x04)           { LCDstr("FORWARD", 0x80);
sendstr("FORWARD"); }
          elseif(y==0x08){ LCDstr("REWIND ",
0x80); sendstr("REWIND"); }
          elseif(y==0x14){ LCDstr("PLAY ", 0x80);
sendstr("PLAY"); }
          elseif(y==0x18){ LCDstr("STOP ", 0x80);
sendstr("STOP"); }
          gap(200); } }}
          The coding in to the LPC 2148 micro
controller is developed and dumped using keil u
vision3 software. The power supply connections are
produce to the MMA 7660 for the operation of the kit
along with the ARM 7 development board.




                                                                                                  834 | P a g e
Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and
                    Applications (IJERA) ISSN: 2248-9622 www.ijera.com
                          Vol. 2, Issue 4, June-July 2012, pp.832-835
                                                       [5].  http://www.freescale.com.cn/files/sensors/doc/
                                                             data_sheet/MMA7660FC.pdf
                                                       [6]. http://www.keil.com/dd/docs/datashts/philips/l
                                                             pc2141_42_44_46_48.pdf
                                                       [7]. http://www.national.com/dsLM35.pdf
                                                       [8]. http://www.nxp.com/documents/user_manual/
                                                             UM10139.pdf
                                                       [9]. http://www.garmin.com/products/gps35
                                                       [10]. http://www.alldatasheet.com


                                                       Author(s)




                                                       Author 1: Dileep Chappidi is a Final year student of
                                                       Bachelor      of   Technology,      Electronics   and
                                                       Communication Engineering from Hyderabad
                                                       Institute of Technology and Management,
                                                       Gowdavelly, R.R District, A.P, India. He has
                                                       published one International research paper previously
                                                       in the year 2011. He has participated number of paper
                                                       presentations and workshops at deemed and esteemed
                                                       universities such as IIT Kanpur, IIIT Hyderabad etc.
                                                       He is presently student chair of the IEEE Student
                                                       Chapter at HITAM. Bearing an IEEE member no:
                                                       91240051. He became a member of IEEE in 2011.
                                                       He is the Chief Organizer of a National level
                                                       technical symposium ESPARTO 2k12 conducted at
                                                       HITAM.



ACKNOWLEDGMENT
       The authors would like to thank the
management of Hyderabad Institute of Technology
and Management, Hyderabad for all the support
given.
                                                       Author 2: Ms Lavanya Thunuguntla has 6 years of
                                                       Teaching experience and presently working as an
                                                       Associate Professor in the Department of ECE in
REFERENCES                                             Hyderabad Institute of Technology and Management
[1].   M. A. Mazidi, J. C. Mazidi, R. D. Mckinaly,
                                                       (HITAM), Hyderabad, AP(India).She received her
       The 8051 Microcontroller and Embedded
                                                       B.Sc degree in Computer Science from Acharya
       Systems, Pearson Education, 2006.
                                                       Nagarjuna University in 2002, M.Sc degree in
[2].   Michael Barr, ’Programming Embedded
                                                       Physics from University of Hyderabad, Hyderabad in
       Systems in C and C++’ ,1st edition, O’Reilly
                                                       2004 and M.Tech from Indian Institute of
       & Associates, Canada (1999).
                                                       Technology (IIT) Kharagpur in 2007. She has
[3].   Garrett Brown,”An Accelerometer Based Fall
                                                       Professional Membership in IEEE,WIE. She has
       Detector: Development, Experimentation, and
                                                       various National & International journal publications.
       Analysis”, EECS/SUPERB, July 2005.
                                                       She has guided several M.Tech and B.Tech projects.
[4].   Mikko Lindholm, ET al.Indentifying User of
                                                       She has strong motivation towards research in the
       Portable Devices from Gait Pattern with
                                                       fields of Nano Technology, Microwave and Optical
       Accelerometers[C]//IEEE         International
                                                       & Analog Communications ,VLSI system design etc.
       Conference on Acoustics, Speech, and Signal
       Processing, 2005, 2.



                                                                                              835 | P a g e

Mais conteúdo relacionado

Mais procurados

An automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanismAn automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanismeSAT Publishing House
 
An automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tankAn automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tankeSAT Journals
 
Sms based patient report from remote place1
Sms based patient report from remote place1Sms based patient report from remote place1
Sms based patient report from remote place1Atul Uttam
 
Fpga based heart rate monitoring system using gsm
Fpga based heart rate monitoring system using gsmFpga based heart rate monitoring system using gsm
Fpga based heart rate monitoring system using gsmAnuj Arora
 
Haptic gloves controlled robotic arm using MEMS accelerometer
Haptic gloves controlled robotic arm using MEMS accelerometerHaptic gloves controlled robotic arm using MEMS accelerometer
Haptic gloves controlled robotic arm using MEMS accelerometerijiert bestjournal
 
BLACK BOX INVESTIGATION SYSTEM FOR VEHICLES
BLACK BOX INVESTIGATION SYSTEM FOR VEHICLESBLACK BOX INVESTIGATION SYSTEM FOR VEHICLES
BLACK BOX INVESTIGATION SYSTEM FOR VEHICLESMriganka Das
 
REPORT texto braillefinal
REPORT texto braillefinalREPORT texto braillefinal
REPORT texto braillefinalASWATHI K
 
Navigation of Robot Vehicle using RF with Landmine Detection
Navigation of Robot Vehicle using RF with Landmine DetectionNavigation of Robot Vehicle using RF with Landmine Detection
Navigation of Robot Vehicle using RF with Landmine DetectionVeena Rani
 
RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127RAJPRASAD RS
 
Development and Application of a Failure Monitoring System by Using the Vibra...
Development and Application of a Failure Monitoring System by Using the Vibra...Development and Application of a Failure Monitoring System by Using the Vibra...
Development and Application of a Failure Monitoring System by Using the Vibra...inventy
 
Tunnel robot ppt
Tunnel robot pptTunnel robot ppt
Tunnel robot pptshakshi58
 
embedded systems and robotics on avr platform
embedded systems and robotics on avr platformembedded systems and robotics on avr platform
embedded systems and robotics on avr platformNeha Sharma
 
Gesture control robot using accelerometer documentation
Gesture control robot using accelerometer documentationGesture control robot using accelerometer documentation
Gesture control robot using accelerometer documentationRajendra Prasad
 

Mais procurados (17)

An automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanismAn automatic wave probe reference setting mechanism
An automatic wave probe reference setting mechanism
 
An automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tankAn automatic wave probe reference setting mechanism in a high speed towing tank
An automatic wave probe reference setting mechanism in a high speed towing tank
 
Sms based patient report from remote place1
Sms based patient report from remote place1Sms based patient report from remote place1
Sms based patient report from remote place1
 
Fpga based heart rate monitoring system using gsm
Fpga based heart rate monitoring system using gsmFpga based heart rate monitoring system using gsm
Fpga based heart rate monitoring system using gsm
 
Ju2416921695
Ju2416921695Ju2416921695
Ju2416921695
 
Medicine reminder
Medicine reminderMedicine reminder
Medicine reminder
 
Haptic gloves controlled robotic arm using MEMS accelerometer
Haptic gloves controlled robotic arm using MEMS accelerometerHaptic gloves controlled robotic arm using MEMS accelerometer
Haptic gloves controlled robotic arm using MEMS accelerometer
 
BLACK BOX INVESTIGATION SYSTEM FOR VEHICLES
BLACK BOX INVESTIGATION SYSTEM FOR VEHICLESBLACK BOX INVESTIGATION SYSTEM FOR VEHICLES
BLACK BOX INVESTIGATION SYSTEM FOR VEHICLES
 
REPORT texto braillefinal
REPORT texto braillefinalREPORT texto braillefinal
REPORT texto braillefinal
 
Navigation of Robot Vehicle using RF with Landmine Detection
Navigation of Robot Vehicle using RF with Landmine DetectionNavigation of Robot Vehicle using RF with Landmine Detection
Navigation of Robot Vehicle using RF with Landmine Detection
 
Report (2)
Report (2)Report (2)
Report (2)
 
Training report on embedded sys_AVR
Training report on embedded sys_AVRTraining report on embedded sys_AVR
Training report on embedded sys_AVR
 
RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127RAJPRASAD PAPER NO-127
RAJPRASAD PAPER NO-127
 
Development and Application of a Failure Monitoring System by Using the Vibra...
Development and Application of a Failure Monitoring System by Using the Vibra...Development and Application of a Failure Monitoring System by Using the Vibra...
Development and Application of a Failure Monitoring System by Using the Vibra...
 
Tunnel robot ppt
Tunnel robot pptTunnel robot ppt
Tunnel robot ppt
 
embedded systems and robotics on avr platform
embedded systems and robotics on avr platformembedded systems and robotics on avr platform
embedded systems and robotics on avr platform
 
Gesture control robot using accelerometer documentation
Gesture control robot using accelerometer documentationGesture control robot using accelerometer documentation
Gesture control robot using accelerometer documentation
 

Destaque

Vitrectomia pars plana
Vitrectomia pars planaVitrectomia pars plana
Vitrectomia pars planaPaco Valdes
 
Dossier teatro cervantes
Dossier teatro cervantesDossier teatro cervantes
Dossier teatro cervantesProyectoHorus1
 
Estresse o mal do século
Estresse o mal do séculoEstresse o mal do século
Estresse o mal do séculoJoney Pereira
 
Eloy alfaro textos políticos
Eloy alfaro textos políticosEloy alfaro textos políticos
Eloy alfaro textos políticosRobert Gallegos
 
Alejandro handia
Alejandro handia Alejandro handia
Alejandro handia UPV/EHU
 
Llamamiento Refundacion 1
Llamamiento Refundacion 1Llamamiento Refundacion 1
Llamamiento Refundacion 1guest61c7e6
 
Apresentação dos resultados 4t12
Apresentação dos resultados 4t12Apresentação dos resultados 4t12
Apresentação dos resultados 4t12TriunfoRi
 
30102009160711e book leitura_dinamica
30102009160711e book leitura_dinamica30102009160711e book leitura_dinamica
30102009160711e book leitura_dinamicaSuely Seuly
 
Ley orgánica para el cierre de la crisis bancaria de 1999
Ley orgánica para el cierre de la crisis bancaria de 1999Ley orgánica para el cierre de la crisis bancaria de 1999
Ley orgánica para el cierre de la crisis bancaria de 1999Robert Gallegos
 

Destaque (20)

Dw24779784
Dw24779784Dw24779784
Dw24779784
 
Cy24649654
Cy24649654Cy24649654
Cy24649654
 
Cc24529533
Cc24529533Cc24529533
Cc24529533
 
Di24709711
Di24709711Di24709711
Di24709711
 
Cn24588592
Cn24588592Cn24588592
Cn24588592
 
Eb24808816
Eb24808816Eb24808816
Eb24808816
 
D24019026
D24019026D24019026
D24019026
 
Cj24566573
Cj24566573Cj24566573
Cj24566573
 
Et31962968
Et31962968Et31962968
Et31962968
 
Vitrectomia pars plana
Vitrectomia pars planaVitrectomia pars plana
Vitrectomia pars plana
 
Dossier teatro cervantes
Dossier teatro cervantesDossier teatro cervantes
Dossier teatro cervantes
 
Estresse o mal do século
Estresse o mal do séculoEstresse o mal do século
Estresse o mal do século
 
Eloy alfaro textos políticos
Eloy alfaro textos políticosEloy alfaro textos políticos
Eloy alfaro textos políticos
 
Virus y anti virus (1)
Virus y anti virus (1)Virus y anti virus (1)
Virus y anti virus (1)
 
Alejandro handia
Alejandro handia Alejandro handia
Alejandro handia
 
Llamamiento Refundacion 1
Llamamiento Refundacion 1Llamamiento Refundacion 1
Llamamiento Refundacion 1
 
Apresentação dos resultados 4t12
Apresentação dos resultados 4t12Apresentação dos resultados 4t12
Apresentação dos resultados 4t12
 
30102009160711e book leitura_dinamica
30102009160711e book leitura_dinamica30102009160711e book leitura_dinamica
30102009160711e book leitura_dinamica
 
Presentación sitio web
Presentación sitio webPresentación sitio web
Presentación sitio web
 
Ley orgánica para el cierre de la crisis bancaria de 1999
Ley orgánica para el cierre de la crisis bancaria de 1999Ley orgánica para el cierre de la crisis bancaria de 1999
Ley orgánica para el cierre de la crisis bancaria de 1999
 

Semelhante a Ee24832835

Gesture control robot
Gesture control robotGesture control robot
Gesture control robotSujit Singh
 
Gesture Controlled Chair
Gesture Controlled ChairGesture Controlled Chair
Gesture Controlled Chairtheijes
 
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...IOSR Journals
 
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...IOSR Journals
 
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...IOSR Journals
 
ACCELEROMETER BASED GESTURE ROBO CAR
ACCELEROMETER BASED GESTURE ROBO CARACCELEROMETER BASED GESTURE ROBO CAR
ACCELEROMETER BASED GESTURE ROBO CARHarshit Jain
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD Editor
 
IRJET- Transformer Monitoring and Protection System using AVR Atmega16 Mi...
IRJET-  	  Transformer Monitoring and Protection System using AVR Atmega16 Mi...IRJET-  	  Transformer Monitoring and Protection System using AVR Atmega16 Mi...
IRJET- Transformer Monitoring and Protection System using AVR Atmega16 Mi...IRJET Journal
 
HMC5843 3-Axis Electronic Compass
HMC5843 3-Axis Electronic CompassHMC5843 3-Axis Electronic Compass
HMC5843 3-Axis Electronic CompassPremier Farnell
 
-1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid
 -1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid -1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid
-1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaidsairamreddy siddu
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)IJERD Editor
 
Applications of microcontroller
Applications of microcontrollerApplications of microcontroller
Applications of microcontrollerbabak danyal
 
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTvasav2204
 
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering projectvasav2204
 
Training Report on embedded Systems and Robotics
Training Report on embedded  Systems and RoboticsTraining Report on embedded  Systems and Robotics
Training Report on embedded Systems and RoboticsNIT Raipur
 

Semelhante a Ee24832835 (20)

Gesture control robot
Gesture control robotGesture control robot
Gesture control robot
 
Ig3314081417
Ig3314081417Ig3314081417
Ig3314081417
 
Ig3314081417
Ig3314081417Ig3314081417
Ig3314081417
 
Gesture Controlled Chair
Gesture Controlled ChairGesture Controlled Chair
Gesture Controlled Chair
 
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
 
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
 
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...Implementation of an Improved Microcontroller Based Moving Message Display Sy...
Implementation of an Improved Microcontroller Based Moving Message Display Sy...
 
E010132736
E010132736E010132736
E010132736
 
ACCELEROMETER BASED GESTURE ROBO CAR
ACCELEROMETER BASED GESTURE ROBO CARACCELEROMETER BASED GESTURE ROBO CAR
ACCELEROMETER BASED GESTURE ROBO CAR
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
IJERD (www.ijerd.com) International Journal of Engineering Research and Devel...
 
IRJET- Transformer Monitoring and Protection System using AVR Atmega16 Mi...
IRJET-  	  Transformer Monitoring and Protection System using AVR Atmega16 Mi...IRJET-  	  Transformer Monitoring and Protection System using AVR Atmega16 Mi...
IRJET- Transformer Monitoring and Protection System using AVR Atmega16 Mi...
 
HMC5843 3-Axis Electronic Compass
HMC5843 3-Axis Electronic CompassHMC5843 3-Axis Electronic Compass
HMC5843 3-Axis Electronic Compass
 
Gas sensor
Gas sensorGas sensor
Gas sensor
 
-1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid
 -1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid -1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid
-1348064572-13. electronics - ijeceierd - design and - sapna katiyar - unpaid
 
Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)Welcome to International Journal of Engineering Research and Development (IJERD)
Welcome to International Journal of Engineering Research and Development (IJERD)
 
Applications of microcontroller
Applications of microcontrollerApplications of microcontroller
Applications of microcontroller
 
ELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECTELECTRICAL ENGINEERING PROJECT
ELECTRICAL ENGINEERING PROJECT
 
electrical engineering project
electrical engineering projectelectrical engineering project
electrical engineering project
 
Training Report on embedded Systems and Robotics
Training Report on embedded  Systems and RoboticsTraining Report on embedded  Systems and Robotics
Training Report on embedded Systems and Robotics
 

Ee24832835

  • 1. Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.832-835 MEMS Accelerometer Based Gesture Controlled Java Music Player Dileep Chappidi*, Lavanya Thunuguntla** *B.Tech Final Year Student, Department of ECE HITAM, A.P (India) ** Associate Professor, Department of ECE, HITAM, A.P (India) Abstract In this project we are using the MEMS LITERATURE SURVEY Accelerometer MMA7660 IC. This gives the three The MMA7660FC is a ±1.5 g 3-Axis dimensions (x, y, and z) readings of a particular Accelerometer with Digital Output (I2C). It is a very object. So if we move any object in any direction low power, low profile capacitive MEMS sensor then the corresponding values are noted by the featuring a low pass filter, compensation for 0g offset accelerometer. Most of the music players are and gain errors, and conversion to 6-bit digital values controlled through the remote controls which at user configurable samples per second. The device contain buttons. But through embedding the can be used for sensor data changes, product MEMS Accelerometer we can make music player orientation, and gesture detection through an interrupt can control by gesture performance in the air. The pin (INT). The device is housed in a small 3mm x application of this three axis accelerometer 3mm x 0.9mm DFN package. together with suitable interfacing with the ARM7 micro controller and the music player The Free scale Accelerometer consists of a development through coding in java which could MEMS capacitive sensing g-cell and a signal recognize the hyper terminal input instructions conditioning ASIC contained in a single package. can perform functions like play, stop, play back The sensing element is sealed hermetically at the and play forward of music player controlled by wafer level using a bulk micro machined cap wafer. gesture. We need to move the MMA The g-cell is a mechanical structure formed from accelerometer in a particular set of directions then semi conductor materials (poly silicon) using it will recognize one of the directions like masking and etching processes. The sensor can be REWIND, FORWARD, PLAY and STOP and modeled as a movable beam that moves between two operate the songs present in the list of music mechanically fixed beams. Two gaps are formed; one system. being between the movable beam and the first stationary beam and the second between the movable Index Terms: MEMS, Accelerometer, MMA beam and the second stationary beam. The ASIC uses 7660, ARM 7, LCD, PC, Music Player, Gesture, switched capacitor techniques to measure the g-cell Java. capacitors and extract the acceleration data from the difference between the two capacitors. The ASIC INTRODUCTION also signal conditions and filters (switched capacitor) In this project we are using MMA the signal, providing a digital output that is accelerometer sensor i.e., MMA-7660 which is a low proportional to acceleration. power, low profile capacitive 3-axis accelerometer commonly called as free fall detection sensor. Because of a sleep mode pin on the accelerometer makes it ideal for the handheld battery powered electronics. The player is coded in Java using Java media frame work which recognizes the port list from MMA7660FC gives the customer the the hyper terminal devices connected and reads the capability to do orientation detection for such commands coming from the RS-232 interface to the applications as Portrait/Landscape in Mobile corresponding port. The program memory of the Arm Phone/PDA/ PMP. The tilt orientation of the device controller is coded in such a way that it recognizes is in 3 dimensions and is identified in its last known the values in the tilt register of the MMA static position. This enables a product to set its accelerometer and sends the commands of Play, Stop, display orientation appropriately to either forward and rewind to the hyper terminal port portrait/landscape mode, or to turn off the display if connected through the Rs- 232 interface. the product is placed upside down. The sensor provides six different positions including: Left, Right, Up, Down, Back, and Front. In Measurement 832 | P a g e
  • 2. Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.832-835 Mode the data is processed and updates the The MMA accelerometer consists of a tilt orientation positions in the TILT (0x03) register. At register which give the orientation logic of the each measurement interval, it computes new values gesture. First the values are defined for the gesture for Left, Right, Up, Down, Back, and Front but it performance and these values are fixed to the does not automatically update these bits in the TILT commands of the player. (0x03) register. These values are updated depending The Arm controller is processed in such a on the de bounce filter settings (SR Register 0x08) way that depending up on the orientation logic configured by the customer. performed by the accelerometer the tilt values keep on changing. These values are read through the SCL, In order to give the customer the ability to SDA and the INT lines which are interfaced to one of configure the de bounce filter, specific to their the port in Arm controller LPC 2148. Apart from application, they can change the following bits in the sending the commands to the hyper terminal the SR (0x08) register, FILT [2:0]. Please see below for a commands are also displayed on the LCD interfaced more detailed explanation of how the FILT [2:0] to the Arm 7 micro controller with the help of works in conjunction with updating the TILT (0x03) internal LCD commands. register: • If FILT[2:0] = 000, then the new values for Left, INTERFACING BETWEEN THE MODULES Right, Up, Down, Back, and Front are updated in the PC is connected to the UART 0, SCL is TILT (0x03) register after every reading without any connected to the P0.2, SDA is connected to the P0.3, further analysis. and INT is connected to the port P0.1. These three • If FILT[2:0] = 001 – 111, then the sensor requires pins can be connected to any of the pins in the the computed values for Left, Right, Up, Down, controller and as per the connections the code and Back, and Front to be the same from 1-7 consecutive logic are maintained. The figure below shows the readings (depending on the value in FILT[2:0], interfacing of the MMA accelerometer to micro before updating the values stored in TILT (0x03) controller unit. register. The de bounce counter is reset after a mismatched reading or the TILT (0x03) register is updated (if the orientation condition is met). I. BLOCK DIAGRAM EXPLANATION Fig 2: Interfacing of MMA 7660 to MCU The interfacing between the LCD and the Arm 7 microcontroller is done through four data lines. The 8 bit data of the commands are divided in to two four bit data and passed through the four interfaced lines of the LCD and one of Arm 7 Fig 1: Block diagram of MMA Controlled Music microcontroller port. The other two pins are Player dedicated for RS and EN pins of LCD. The interfacing of LCD module to MCU is shown in the In this project we required operating voltage figure below: for ARM controller board is 12V. Hence the 12V D.C. power supply is needed for the ARM board. This regulated 12V is generated by stepping down the voltage from 230V to 18V now the step downed AC voltage is being rectified by the Bridge Rectifier using 1N4007 diodes. The rectified AC voltage is now filtered using a ‘C’ filter. Now the rectified, filtered D.C. voltage is fed to the Voltage Regulator. This voltage regulator provides/allows us to have a Regulated constant Voltage which is of +12V. The rectified; filtered and regulated voltage is again filtered for ripples using an electrolytic capacitor 100μF. Now the output from this section is fed to microcontroller board to supply operating voltage. 833 | P a g e
  • 3. Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.832-835 Fig 3: Interfacing of LCD to MCU CONCLUSION The project “Development of Music player PROJECT WORKING in Java and controlling it through the gesture This project involves the development of the performance with the help of MEMS music player in java. For the working of the project Accelerometer” has been successfully designed and the minimum prerequisites for the player tested. development are, java development kit has to be Integrating features of all the hardware installed and the java media frame work which is a components used have developed it. Presence of Java library that enables audio, video and other time- every module has been reasoned out and placed based media to be added to Java applications and carefully thus contributing to the best working of the applets. This optional library package, which can unit. capture, play and stream the multimedia applications, Secondly, using highly advanced IC’s and has also to be installed in the PC. The code is written with the help of growing technology the project has with the appropriate logical conditions with a better been successfully implemented. exception handling cases and build using the java compiler. The code thus build generates the RESULTS AND DISCUSSIONS following files: The purpose of the project to operate an comm.jar (available in lib folder of the project) MP3 Player by our gesture performance in the air by javax.comm.properties and win32com.dll (available using MEMS Sensor is achieved. Experiment shows in dll folder of the project) the application of three-axis accelerometer which can  Put win32com.dll in C:/Program realize the functions like play, stop, play back and Files/javasoft/jre/bin play forward of MP3 player controlled by gesture.  Put javax.comm.properties in C:/program The applications of this project could be done at files/javasoft/jre/lib 1. Homes  Put comm.jar in C:/program 2. Parties files/javasoft/jre/lib/ext 3. Functions, etc... The gesture recognized by the MEMS with The future enhancement of this project is to the help of the x, y and z co-ordinate values can be integrate the MEMS Accelerometer device in to read through the tilt register with the address location Nano scale IC which could be easily operated of (0x03) register. The data from the Tilt register is through embedding the IC in to any electronic sent through the SDA line of the MMA 7660 to the gadgets. MCU. The code logic for operating the player is The result of the project is shown in the below written in the Arm 7 LPC 2148 micro controller pictures: which is shown below: while(1) {mask=IOPIN0 & 0X00000002 ; if(mask==0x00000000) {x=i2cgetc(0x03); y=x&0x40; if(y==0x00) { y=x&0x1c; if(y==0x04) { LCDstr("FORWARD", 0x80); sendstr("FORWARD"); } elseif(y==0x08){ LCDstr("REWIND ", 0x80); sendstr("REWIND"); } elseif(y==0x14){ LCDstr("PLAY ", 0x80); sendstr("PLAY"); } elseif(y==0x18){ LCDstr("STOP ", 0x80); sendstr("STOP"); } gap(200); } }} The coding in to the LPC 2148 micro controller is developed and dumped using keil u vision3 software. The power supply connections are produce to the MMA 7660 for the operation of the kit along with the ARM 7 development board. 834 | P a g e
  • 4. Dileep Chappidi , Lavanya Thunuguntla / International Journal of Engineering Research and Applications (IJERA) ISSN: 2248-9622 www.ijera.com Vol. 2, Issue 4, June-July 2012, pp.832-835 [5]. http://www.freescale.com.cn/files/sensors/doc/ data_sheet/MMA7660FC.pdf [6]. http://www.keil.com/dd/docs/datashts/philips/l pc2141_42_44_46_48.pdf [7]. http://www.national.com/dsLM35.pdf [8]. http://www.nxp.com/documents/user_manual/ UM10139.pdf [9]. http://www.garmin.com/products/gps35 [10]. http://www.alldatasheet.com Author(s) Author 1: Dileep Chappidi is a Final year student of Bachelor of Technology, Electronics and Communication Engineering from Hyderabad Institute of Technology and Management, Gowdavelly, R.R District, A.P, India. He has published one International research paper previously in the year 2011. He has participated number of paper presentations and workshops at deemed and esteemed universities such as IIT Kanpur, IIIT Hyderabad etc. He is presently student chair of the IEEE Student Chapter at HITAM. Bearing an IEEE member no: 91240051. He became a member of IEEE in 2011. He is the Chief Organizer of a National level technical symposium ESPARTO 2k12 conducted at HITAM. ACKNOWLEDGMENT The authors would like to thank the management of Hyderabad Institute of Technology and Management, Hyderabad for all the support given. Author 2: Ms Lavanya Thunuguntla has 6 years of Teaching experience and presently working as an Associate Professor in the Department of ECE in REFERENCES Hyderabad Institute of Technology and Management [1]. M. A. Mazidi, J. C. Mazidi, R. D. Mckinaly, (HITAM), Hyderabad, AP(India).She received her The 8051 Microcontroller and Embedded B.Sc degree in Computer Science from Acharya Systems, Pearson Education, 2006. Nagarjuna University in 2002, M.Sc degree in [2]. Michael Barr, ’Programming Embedded Physics from University of Hyderabad, Hyderabad in Systems in C and C++’ ,1st edition, O’Reilly 2004 and M.Tech from Indian Institute of & Associates, Canada (1999). Technology (IIT) Kharagpur in 2007. She has [3]. Garrett Brown,”An Accelerometer Based Fall Professional Membership in IEEE,WIE. She has Detector: Development, Experimentation, and various National & International journal publications. Analysis”, EECS/SUPERB, July 2005. She has guided several M.Tech and B.Tech projects. [4]. Mikko Lindholm, ET al.Indentifying User of She has strong motivation towards research in the Portable Devices from Gait Pattern with fields of Nano Technology, Microwave and Optical Accelerometers[C]//IEEE International & Analog Communications ,VLSI system design etc. Conference on Acoustics, Speech, and Signal Processing, 2005, 2. 835 | P a g e