SlideShare a Scribd company logo
1 of 22
TEEGALA KRISHNA REDDY ENGINEERING COLLEGE
DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING (UGC-Autonomous)
Approved by AICTE , Affiliated by JNTUH , Accredited by NAAC- ‘A’ Grade
Medbowli,Meerpet,Balapur,Hyderabad,Telangana-500097
MINI PROJECT TITLE
MOTION BASED MESSAGE CONVYER FOR PARALYTIC
DISABLED PERSON
PRESENTED BY:
1.A.BHANUSRI 20R91A0408
2.BALA SAI ADITYA 20R91A0423
3.B.SAI NITHIN 20R91A0424
4.B.MUKESH RAJ 20R91A0427
INTERNAL GUIDE:
Mr K.RAMESH
Assistant professor
CONTENTS
• Objectives
• Existing methods
• Abstract
• Architectural Design for Proposed System
• Detailed explanation of individual blocks with detailed specification compulsory with
condition
• Detailed Flow Chart of the project with all input conditions
• Experimental Results includes output photos of your Project
• Code for all specified input conditions
• Comparison with Existing system
• Conclusion
• Advantages and Applications
• References
OBJECTIVE
 The main aim of the project is to implement a low cost reliable system which will help
to establish communication between paralytic or disabled patients and other people.
 MEMs and APR based announcement system for patients using Arduino is a project
that uses gestures to play recorded voice messages for physically challenged people.
EXISTING METHODS
• Monitoring system make it easier for doctors to collect and observe a patient’s vitals,
there aren’t many options for actual verbal communication for paralytic and disabled.
• They cannot communicate their basic needs with their family members.
ABSTRACT
• Physically challenged people have no specific electronic devices to communicate their
needs using gestures
• This project proposes a MEMS and APR based announcement system for patients.
• A patient can easy send messages by just tilting an accelerometer connected to the body
• The system detects the patient's gestures and plays a recorded voice message based on
the gesture.
• The system can be used in homes, hospitals, and public places.
ARDUINO UNO
MEMS
(ADXL 345)
16X2 LCD
VOICE CHIP
SPEAKER
R P S
Architectural Design For Proposed System
Arudino UNO:
Arudino has inbuilt Analog to digital converter. It has a 16 MHz ceramic resonator, 14 digital
input/output pins ,6 analog inputs, a USB connection, a power jack, an ICSP header, and a reset
button.The ATmega328 has 32 KB ROM. It also has 2 KB of SRAM and 1 KB of EEPROM
(which can be read and written with the EEPROM library.
The operating voltage is 5v and supply voltage is 7 to 20v.
Arduino boards are able to read analog or digital input signals from different sensors and turn it
into an output such as activating a motor, turning LED on/off.
MEMS(ADXL345):
 This ADXL345 Accelerometer module consists of an ADXL345 Accelerometer IC, Voltage
Regulator IC, Level Shifter IC, resistors, and capacitors in an integrated circuit.
 ADXL345 is a 3-axis accelerometer but we use two axis that senses both static acceleration (due
to gravity) as well as dynamic acceleration (due to motion or shock).
 It converts mechanical energy into electrical energy. So, it can be used as a tilt sensor or to detect
free fall. This sensor works with I2C and requires 5v of voltage.It is also called as gyroscope.
Voice module(APR33A IC):
• The APR33A3 device is a single-chip voice recording, non-volatile storage, and
playback capability for 40 to 60 seconds.
• The operating voltage range of this 3v-6.5v.
• It can record 8 voices but we use 4 of it and contains a condense mike.
• It User-friendly, easy-to-use operation and Low power consumption.
16X2 LCD:
• Liquid crystal display is very important device in embedded system. It offers high
flexibility to user as he can display the required data on it.
• A liquid crystal display (LCD) is a thin, flat electronic visual display
• Operating voltage is 4.7v to 5.3v and operating current is 1mA.
• It works in both 8-bit and 4-bit mode.
• It consumes low power.
Regulated power supply:
• A regulated power supply ensures that the output current remains constant,even if the input
changes,by converting unregulated AC to DC.
• With the help of a rectifier it converts AC supply into DC. Its function is to supply a stable
voltage (or less often current), to a circuit or device that must be operated within certain
power supply limits.
• The output from the regulated power supply may be alternating or unidirectional, but is
nearly always DC (direct current).
• The primary advantage of RPS is that it provide a stable and constant output voltage or
current which is crucial for the proper functioning of electronic circuits.
Experimental Results includes output photos of project
The paralytic disabled people can communicate their basic needs with their family/nurse.The
output displays on the LCD.It sounds message through speaker.
#include <Wire.h>
#include <Adafruit_Sensor.h>
#include <Adafruit_ADXL345_U.h>
#include <LiquidCrystal.h>
Adafruit_ADXL345_Unified accel =
Adafruit_ADXL345_Unified(12345);
LiquidCrystal lcd (2,3,4,5,6,7);
int xval,yval;
const int v1=8,v2=9,v3=10,v4=11;
void setup() {
Serial.begin(9600);
lcd.begin(16,2);
pinMode(v1, OUTPUT);
pinMode(v2, OUTPUT);
pinMode(v3, OUTPUT);
pinMode(v4, OUTPUT);
Code for all specified input conditions:
digitalWrite(v1,1);
digitalWrite(v2,1);
digitalWrite(v3,1);
digitalWrite(v4,1);
if(!accel.begin())
{
Serial.print("Check MEMS");
while(1);
}
accel.setRange(ADXL345_RANGE_16_G);
Serial.println("Welcome");
delay(2000);
lcd.print("MSG CONVEYER FOR");
lcd.setCursor(0,1);
lcd.print("PARALYTIC PERSON");
delay(1500);
}
void loop() {
Icd.clear();
sensors_event_t event;
accel.getEvent(&event);
xval = event.acceleration.x;
yval = event.acceleration.y;
Serial.print("X- ");
Serial.print(xval);
Serial.print(" ");
Serial.print("Y- ");
Serial.print(yval);
Serial.println(" ");
delay(500) ;
if((xval>-2 && xval<4) && (yval>-11 && yval<-4)) // fwd
{
Serial.println("1");
lcd.clear();
lcd.print("NEED WATER..");
digitalWrite(v1,0);
delay(3000);
digitalWrite(v1,1);
}
else if((xval>3 && xval<11) && (yval>-6 && yval<4)) // rt
{
Serial.println("2");
lcd.clear();
lcd.print("NEED FOOD..");
digitalWrite(v2,0);
}
else if((xval>-11 && xval<-5) && (yval>-4 && yval<3)) //lt
{
Serial.println("3");
lcd.clear();
lcd.print("NEED MEDICINE");7yy
digitalWrite(v3,0);
delay(3000);
digitalWrite(v3,1);
}
}
else if((xval>-11 && xval<-5) && (yval>-4 && yval<3)) //lt
{
Serial.println("3");
lcd.clear();
lcd.print("NEED MEDICINE");
digitalWrite(v3,0);
delay(3000);
digitalWrite(v3,1);
}
Comparision with existing system
• Among the large number of paralytic disabled peoples , very few actually focus on helping
patients with disabilities to communicate.
• Although monitoring systems make it easier for doctors to collect and observe a patient's
vitals, there aren't many options for actual verbal communication for disabled patients.
• The main aim of the project is to implement a low cost reliable system which will help to
establish communication between paralytic or disabled patients and other people.
• A patient can easy send messages by just tilting an accelerometer connected to the body.
• The system detects the patient's gestures and plays a recorded voice message based on the
gesture.
CONCLUSION
In conclusion, motion based message conveyer for paralytic disabled enable system is a
valuable innovation that can improve the lives of people with physical challenges. It can
give them more independence, control, and efficiency when using technology. It has many
applications, including controlling computers and smartphones, smart home devices.
ADVANTAGES
1. It can give people with physical challenges more independence and control over their
technology.
2. It can improve their quality of life by making it easier for them to interact with their devices.
3. It can reduce the need for assistance from caregivers, which can be empowering for the user.
4. It can be more efficient and faster than traditional methods of switching between devices.
Applications
• Controlling a computer or smartphone without using hands
• Switching between smart home devices, such as lights and thermostats
• Controlling a wheelchair or other mobility device
• Controlling a robotic arm or other assistive device
• Playing video games using head movements instead of a controller
• Making phone calls or sending text messages without using hands
REFERENCES
• [1] Mr.Angurajsiva J, Elakkiya V, Kowsalya A, Ramya S, Divya S, "Wearable Device for Child Safety using
Arduino Uno and Tracking System", published in International Research Journal of Innovations in Engineering
and Technology - IRJIET, Volume 4, Issue 5, pp 105-107, May 2020.
• [2] Rajalakshmi S.S.Nikilla, “Real Time Health Monitoring System using Arduino”, South Asian journal of
Engineering and technology vol.2, no.18 (11th march 2016)
• [3] Sakshi sharma, Rashmi vashisth; “Zigbee Based centralized Patient Monitoring System”, International
conference on communication intelligence and communication network (2015).
• [4] Thavamani.P, Ramesh.K, Sundari.B, “Simulation and Modeling of 6-DOF Robot Manipulator Using
Matlab Software” published in International Research Journal of Innovations in Engineering and Technology
(IRJIET), Volume 2, Issue 4, pp 6-10, 2018.
• [5] A.H.Nasutionand S. Emmanuel,“ Intelligent video surveillance for monitoring elderly in home
environments”, in Proc. IEEE 9thWorkshop Multimedia Signal Process., Oct.2007, pp. 203–206.
THANKYOU

More Related Content

Similar to Motion_ppt_final[1].pptx

smart home automation system
smart home automation systemsmart home automation system
smart home automation systemMdSaifuddinQuader
 
Automatic room light controller using microcontroller and visitor counter
Automatic room light controller using microcontroller and visitor counterAutomatic room light controller using microcontroller and visitor counter
Automatic room light controller using microcontroller and visitor countereSAT Journals
 
REAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISIS
REAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISISREAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISIS
REAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISISIRJET Journal
 
Android Based Voice Controlled Smart Wheelchair
Android Based Voice Controlled Smart WheelchairAndroid Based Voice Controlled Smart Wheelchair
Android Based Voice Controlled Smart WheelchairIRJET Journal
 
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET Journal
 
Paper id 36201529
Paper id 36201529Paper id 36201529
Paper id 36201529IJRAT
 
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
 
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
 
Wireless energy meter monitoring with automated tariff calculation
Wireless energy meter monitoring with automated tariff calculationWireless energy meter monitoring with automated tariff calculation
Wireless energy meter monitoring with automated tariff calculationUdayalakshmi JK
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...ijistjournal
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...ijistjournal
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...ijistjournal
 
Design Efficient Wireless Monitoring Platform for Recycling Point Spots
Design Efficient Wireless Monitoring Platform for Recycling Point SpotsDesign Efficient Wireless Monitoring Platform for Recycling Point Spots
Design Efficient Wireless Monitoring Platform for Recycling Point SpotsIJMTST Journal
 
IRJET- Arduino based Smart Grid Power Monitoring and Control by using IoT
IRJET-  	  Arduino based Smart Grid Power Monitoring and Control by using IoTIRJET-  	  Arduino based Smart Grid Power Monitoring and Control by using IoT
IRJET- Arduino based Smart Grid Power Monitoring and Control by using IoTIRJET Journal
 

Similar to Motion_ppt_final[1].pptx (20)

smart home automation system
smart home automation systemsmart home automation system
smart home automation system
 
Automatic room light controller using microcontroller and visitor counter
Automatic room light controller using microcontroller and visitor counterAutomatic room light controller using microcontroller and visitor counter
Automatic room light controller using microcontroller and visitor counter
 
REAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISIS
REAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISISREAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISIS
REAL-TIME LOCATION TRACKER FOR HEALTH PATIENT IN CRISIS
 
Android Based Voice Controlled Smart Wheelchair
Android Based Voice Controlled Smart WheelchairAndroid Based Voice Controlled Smart Wheelchair
Android Based Voice Controlled Smart Wheelchair
 
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...IRJET- Items’ Filling System Prototype with Sorting System According to the C...
IRJET- Items’ Filling System Prototype with Sorting System According to the C...
 
Minor_project.ppt.pdf
Minor_project.ppt.pdfMinor_project.ppt.pdf
Minor_project.ppt.pdf
 
Paper id 36201529
Paper id 36201529Paper id 36201529
Paper id 36201529
 
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
 
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...
 
Wireless energy meter monitoring with automated tariff calculation
Wireless energy meter monitoring with automated tariff calculationWireless energy meter monitoring with automated tariff calculation
Wireless energy meter monitoring with automated tariff calculation
 
Bidirect visitor counter
Bidirect visitor counterBidirect visitor counter
Bidirect visitor counter
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
 
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
DESIGN AND DEVELOPMENT OF A LOW-COST MICROCONTROLLER BASED SINGLE PHASE WATER...
 
Design Efficient Wireless Monitoring Platform for Recycling Point Spots
Design Efficient Wireless Monitoring Platform for Recycling Point SpotsDesign Efficient Wireless Monitoring Platform for Recycling Point Spots
Design Efficient Wireless Monitoring Platform for Recycling Point Spots
 
IRJET- Arduino based Smart Grid Power Monitoring and Control by using IoT
IRJET-  	  Arduino based Smart Grid Power Monitoring and Control by using IoTIRJET-  	  Arduino based Smart Grid Power Monitoring and Control by using IoT
IRJET- Arduino based Smart Grid Power Monitoring and Control by using IoT
 

Recently uploaded

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementmkooblal
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfUjwalaBharambe
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxpboyjonauth
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfadityarao40181
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxRaymartEstabillo3
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Celine George
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxEyham Joco
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 

Recently uploaded (20)

Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...OS-operating systems- ch04 (Threads) ...
OS-operating systems- ch04 (Threads) ...
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Hierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of managementHierarchy of management that covers different levels of management
Hierarchy of management that covers different levels of management
 
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdfFraming an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
Framing an Appropriate Research Question 6b9b26d93da94caf993c038d9efcdedb.pdf
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
Introduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptxIntroduction to AI in Higher Education_draft.pptx
Introduction to AI in Higher Education_draft.pptx
 
Biting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdfBiting mechanism of poisonous snakes.pdf
Biting mechanism of poisonous snakes.pdf
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptxEPANDING THE CONTENT OF AN OUTLINE using notes.pptx
EPANDING THE CONTENT OF AN OUTLINE using notes.pptx
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
Incoming and Outgoing Shipments in 1 STEP Using Odoo 17
 
Types of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptxTypes of Journalistic Writing Grade 8.pptx
Types of Journalistic Writing Grade 8.pptx
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 

Motion_ppt_final[1].pptx

  • 1. TEEGALA KRISHNA REDDY ENGINEERING COLLEGE DEPARTMENT OF ELECTRONICS AND COMMUNICATION ENGINEERING (UGC-Autonomous) Approved by AICTE , Affiliated by JNTUH , Accredited by NAAC- ‘A’ Grade Medbowli,Meerpet,Balapur,Hyderabad,Telangana-500097 MINI PROJECT TITLE MOTION BASED MESSAGE CONVYER FOR PARALYTIC DISABLED PERSON PRESENTED BY: 1.A.BHANUSRI 20R91A0408 2.BALA SAI ADITYA 20R91A0423 3.B.SAI NITHIN 20R91A0424 4.B.MUKESH RAJ 20R91A0427 INTERNAL GUIDE: Mr K.RAMESH Assistant professor
  • 2. CONTENTS • Objectives • Existing methods • Abstract • Architectural Design for Proposed System • Detailed explanation of individual blocks with detailed specification compulsory with condition • Detailed Flow Chart of the project with all input conditions • Experimental Results includes output photos of your Project • Code for all specified input conditions • Comparison with Existing system • Conclusion • Advantages and Applications • References
  • 3. OBJECTIVE  The main aim of the project is to implement a low cost reliable system which will help to establish communication between paralytic or disabled patients and other people.  MEMs and APR based announcement system for patients using Arduino is a project that uses gestures to play recorded voice messages for physically challenged people.
  • 4. EXISTING METHODS • Monitoring system make it easier for doctors to collect and observe a patient’s vitals, there aren’t many options for actual verbal communication for paralytic and disabled. • They cannot communicate their basic needs with their family members.
  • 5. ABSTRACT • Physically challenged people have no specific electronic devices to communicate their needs using gestures • This project proposes a MEMS and APR based announcement system for patients. • A patient can easy send messages by just tilting an accelerometer connected to the body • The system detects the patient's gestures and plays a recorded voice message based on the gesture. • The system can be used in homes, hospitals, and public places.
  • 6. ARDUINO UNO MEMS (ADXL 345) 16X2 LCD VOICE CHIP SPEAKER R P S Architectural Design For Proposed System
  • 7. Arudino UNO: Arudino has inbuilt Analog to digital converter. It has a 16 MHz ceramic resonator, 14 digital input/output pins ,6 analog inputs, a USB connection, a power jack, an ICSP header, and a reset button.The ATmega328 has 32 KB ROM. It also has 2 KB of SRAM and 1 KB of EEPROM (which can be read and written with the EEPROM library. The operating voltage is 5v and supply voltage is 7 to 20v. Arduino boards are able to read analog or digital input signals from different sensors and turn it into an output such as activating a motor, turning LED on/off.
  • 8. MEMS(ADXL345):  This ADXL345 Accelerometer module consists of an ADXL345 Accelerometer IC, Voltage Regulator IC, Level Shifter IC, resistors, and capacitors in an integrated circuit.  ADXL345 is a 3-axis accelerometer but we use two axis that senses both static acceleration (due to gravity) as well as dynamic acceleration (due to motion or shock).  It converts mechanical energy into electrical energy. So, it can be used as a tilt sensor or to detect free fall. This sensor works with I2C and requires 5v of voltage.It is also called as gyroscope.
  • 9. Voice module(APR33A IC): • The APR33A3 device is a single-chip voice recording, non-volatile storage, and playback capability for 40 to 60 seconds. • The operating voltage range of this 3v-6.5v. • It can record 8 voices but we use 4 of it and contains a condense mike. • It User-friendly, easy-to-use operation and Low power consumption.
  • 10. 16X2 LCD: • Liquid crystal display is very important device in embedded system. It offers high flexibility to user as he can display the required data on it. • A liquid crystal display (LCD) is a thin, flat electronic visual display • Operating voltage is 4.7v to 5.3v and operating current is 1mA. • It works in both 8-bit and 4-bit mode. • It consumes low power.
  • 11. Regulated power supply: • A regulated power supply ensures that the output current remains constant,even if the input changes,by converting unregulated AC to DC. • With the help of a rectifier it converts AC supply into DC. Its function is to supply a stable voltage (or less often current), to a circuit or device that must be operated within certain power supply limits. • The output from the regulated power supply may be alternating or unidirectional, but is nearly always DC (direct current). • The primary advantage of RPS is that it provide a stable and constant output voltage or current which is crucial for the proper functioning of electronic circuits.
  • 12. Experimental Results includes output photos of project The paralytic disabled people can communicate their basic needs with their family/nurse.The output displays on the LCD.It sounds message through speaker.
  • 13. #include <Wire.h> #include <Adafruit_Sensor.h> #include <Adafruit_ADXL345_U.h> #include <LiquidCrystal.h> Adafruit_ADXL345_Unified accel = Adafruit_ADXL345_Unified(12345); LiquidCrystal lcd (2,3,4,5,6,7); int xval,yval; const int v1=8,v2=9,v3=10,v4=11; void setup() { Serial.begin(9600); lcd.begin(16,2); pinMode(v1, OUTPUT); pinMode(v2, OUTPUT); pinMode(v3, OUTPUT); pinMode(v4, OUTPUT); Code for all specified input conditions:
  • 14. digitalWrite(v1,1); digitalWrite(v2,1); digitalWrite(v3,1); digitalWrite(v4,1); if(!accel.begin()) { Serial.print("Check MEMS"); while(1); } accel.setRange(ADXL345_RANGE_16_G); Serial.println("Welcome"); delay(2000); lcd.print("MSG CONVEYER FOR"); lcd.setCursor(0,1); lcd.print("PARALYTIC PERSON"); delay(1500); } void loop() { Icd.clear(); sensors_event_t event; accel.getEvent(&event); xval = event.acceleration.x; yval = event.acceleration.y;
  • 15. Serial.print("X- "); Serial.print(xval); Serial.print(" "); Serial.print("Y- "); Serial.print(yval); Serial.println(" "); delay(500) ; if((xval>-2 && xval<4) && (yval>-11 && yval<-4)) // fwd { Serial.println("1"); lcd.clear(); lcd.print("NEED WATER.."); digitalWrite(v1,0); delay(3000); digitalWrite(v1,1); } else if((xval>3 && xval<11) && (yval>-6 && yval<4)) // rt { Serial.println("2"); lcd.clear(); lcd.print("NEED FOOD.."); digitalWrite(v2,0);
  • 16. } else if((xval>-11 && xval<-5) && (yval>-4 && yval<3)) //lt { Serial.println("3"); lcd.clear(); lcd.print("NEED MEDICINE");7yy digitalWrite(v3,0); delay(3000); digitalWrite(v3,1); } } else if((xval>-11 && xval<-5) && (yval>-4 && yval<3)) //lt { Serial.println("3"); lcd.clear(); lcd.print("NEED MEDICINE"); digitalWrite(v3,0); delay(3000); digitalWrite(v3,1); }
  • 17. Comparision with existing system • Among the large number of paralytic disabled peoples , very few actually focus on helping patients with disabilities to communicate. • Although monitoring systems make it easier for doctors to collect and observe a patient's vitals, there aren't many options for actual verbal communication for disabled patients. • The main aim of the project is to implement a low cost reliable system which will help to establish communication between paralytic or disabled patients and other people. • A patient can easy send messages by just tilting an accelerometer connected to the body. • The system detects the patient's gestures and plays a recorded voice message based on the gesture.
  • 18. CONCLUSION In conclusion, motion based message conveyer for paralytic disabled enable system is a valuable innovation that can improve the lives of people with physical challenges. It can give them more independence, control, and efficiency when using technology. It has many applications, including controlling computers and smartphones, smart home devices.
  • 19. ADVANTAGES 1. It can give people with physical challenges more independence and control over their technology. 2. It can improve their quality of life by making it easier for them to interact with their devices. 3. It can reduce the need for assistance from caregivers, which can be empowering for the user. 4. It can be more efficient and faster than traditional methods of switching between devices.
  • 20. Applications • Controlling a computer or smartphone without using hands • Switching between smart home devices, such as lights and thermostats • Controlling a wheelchair or other mobility device • Controlling a robotic arm or other assistive device • Playing video games using head movements instead of a controller • Making phone calls or sending text messages without using hands
  • 21. REFERENCES • [1] Mr.Angurajsiva J, Elakkiya V, Kowsalya A, Ramya S, Divya S, "Wearable Device for Child Safety using Arduino Uno and Tracking System", published in International Research Journal of Innovations in Engineering and Technology - IRJIET, Volume 4, Issue 5, pp 105-107, May 2020. • [2] Rajalakshmi S.S.Nikilla, “Real Time Health Monitoring System using Arduino”, South Asian journal of Engineering and technology vol.2, no.18 (11th march 2016) • [3] Sakshi sharma, Rashmi vashisth; “Zigbee Based centralized Patient Monitoring System”, International conference on communication intelligence and communication network (2015). • [4] Thavamani.P, Ramesh.K, Sundari.B, “Simulation and Modeling of 6-DOF Robot Manipulator Using Matlab Software” published in International Research Journal of Innovations in Engineering and Technology (IRJIET), Volume 2, Issue 4, pp 6-10, 2018. • [5] A.H.Nasutionand S. Emmanuel,“ Intelligent video surveillance for monitoring elderly in home environments”, in Proc. IEEE 9thWorkshop Multimedia Signal Process., Oct.2007, pp. 203–206.