SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1921
VOICE CONTROLLED ROBOT USING NODEMCU
P.C. Karthik1, Rudra Pratap Singh2, Mukul Gupta3
1,2,3(Department of Computer Science and Science and Engineering, SRM-IST, KTR, India)
-----------------------------------------------------------------------------------***---------------------------------------------------------------------------
Abstract- Voice Controlled Robot is a robot which can be motion-controlled by giving specific voice commands on
the mobile application by user. The first important aspect in the term -voice control is speech recognition. Speech
recognition is the capability of an electronic device to understand and respond to spoken commands. It involves the
processing of speech to the textual commands. This allows it to be used in a lot of applications ranging from
controlling machineries to being our Personal Digital Assistant (PDA). An Android Application will be the speech
recognition platform which will communicate with the robot via the Internet. Moreover, the robot will also be capable to
detect obstacles and give the live transmission with the help of ultrasonic sensors and a camera mounted on it.
Our proposal is a technique which is based on IOT with Artificial Intelligence. It can be useful for numerous
applications such as assistive robots for elderly and people with disabilities or as working robots in many
industrial applications. It can also be used for navigation in thermal plants and nuclear plants.
An Arduino IDE using Embedded C is used as the software to run the Application.
Index Terms- Nodemcu, Speech recognition, Android application, sensors, Artificial Intelligence.
1. INTRODUCTION
Internet of Things (IOT) refers to the network of connected physical electronic devices which can communicate
and exchange data among themselves and respond to commands without any human intervention. It has been
formally defined as an “Infrastructure of Information Society” because IoT permits us to amass
information from all kind of mediums such as humans, home, wearables, transportation, animals and kitchen
appliances. Thus, any object in the physical world which can be provided with an address to enable data
transmission over a network can be made part of IoT system by embedding them with electronic hardware such as
sensors, software and networking gear.
IoT devices when implemented with artificial intelligence will make a much more smarter device because the machine
can learn on its own and make an efficient use of its resources. AI is a simulation of programs which can mimic human
cognition. These programs includes learning, reasoning, problem solving and self- correction. Numerous applications of
AI are Speech recognition and Machine Learning. Artificial intelligence has made its way into a number of areas. The
three main examples of it are:
AI in healthcare: The biggest stake is on improving patient reports and outcomes and reducing costs of treatments.
Companies are applying machine learning to make better and faster diagnosis with technology [1]. AI in education:
AI can personalize learning, automate grading, provide smart content and provide a new height to teaching
efficiency. AI can assess students and adapt to their needs [2]. AI in finance: AI is helping in most of the domains of
finance industry such as Risk Assessment, Trading, Financial Advisory, Personal finance and Fraud Detection.
Applications such as Mint or Turbo Tax, is disrupting a large number of financial institutions. These applications
can collect personal data and provide financial advices [3].
2. LITERATURE SUREVEY
A smartphone is used to simplify and to increase the efficiency of processing of the voice commands. With their
own independent OS and internet connection they are increasingly being used in numerous
applications [1]. One of the major features that we shall be making use of is - the Internet. An internet connection
will allow the phone to communicate with the robot. Several Operating Systems
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1922
are used for smart phones but the most common and efficient one is the Android OS developed by Google Inc. The
Internet exchanges data easily and is a very proficient way of communication between two devices such as
microcontroller and a smart phone [2]. The robot can either maintain preset linear speed or can have variable
speed on flat surfaces. The voice recognition is done with the help of a micro controller: NodeMcu. For detection and
avoiding obstacles, an ultra-sonic module is implemented, which is programmed to stop the robot if there is
any obstruction in its way, and it will inform the user to use another voice command[3].
3. PROPOSED SYSTEM
3.1 BLOCK DIAGRAM
3.2 HARDWARE
It includes NodeMcu, a L298 serial motor driver, a control circuit and ultrasonic transmitter and receiver. Node MCU is
a microcontroller and a low-cost open source IoT platform. It includes firmware which runs on the ESP82666 Wi-Fi
SoC from Espressif Systems and hardware which is based on the ESP-12 module. This firmware uses ‘Lua’ Scripting
language .The L298 H- Bridge is Serial Motor Driver board which has dual bidirectional motor based on L298 chip. It
contains two ‘H bridges’ which are of high voltage and current full bridge drivers that can drive two DC motors. First one
is, L298 motor which can independently control two motors of up to 2A each in both directions. The second is
L298 IC, which amplifies an output current as the current from the microcontroller is not enough to drive the DC motor
directly. The HC-SR04 ultrasonic sensor measures distance from an object using Sonar. It provides 2 cm – 400 cm
non-contact measurement function, and the ranging accuracy that can reach upto 3mm. Additionally, it also
includes a simple sound making module called Digital Buzzer that you can use to low/high it. The buzzer
will send sound signals whenever the robot senses any obstacle around its path.
3.3 SOFTWARE
Firebase is an application development platform for both web and mobile. It is embedded into your app and
will store your data online. Firebase can also be used as the Authentication system. A user can send and retrieve the
required data at any time. The voice commands to the robot are processed via an android application and transferred via
Internet. Due to its flexibility and numerous features, Android OS is used as speech recognition platform. Android OS
also allows an easy and reliable connection with the Google Speech processing libraries for smooth speech
recognition. MIT App Inventor 2 is a tool which allows easy creation of android Apps via drag and drop block
programming. This provides people with little to no experience in Java programming, a way to
develop simple applications to suit their purposes. Now, once the app launches, the user will have to connect to
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1923
the robot via the Internet.. After clicking the microphone button it will record the speech. The recorded audio is
processed and the transcribed text is displayed and will be sent to internet in the form of a string or character array.
4. CONTROLLING OF ROBOT
Now, the commands will be received in text form by the robot. This is done by the connected Bluetooth receiver at the
robot end. Initially the robot will wait for an incoming connection. When available, the text will be parsed character by
character to the robot. The Arduino will then build the characters into a single word. A small delay of 100 milliseconds is
implemented in building the word, so as to prevent overwriting or loss of any character. Once the command has been
received the Arduino then compares the text to the preprogrammed instruction set as follows:
a. Slow Forward: This will activate both motors and will move robot forward at low speed.
b. Fast Forward: This will activate both motors and move robot forward at full speed.
c. Slow Backward: This will activate both motors and will move robot backward at low speed.
d. Fast Backward: This will activate both motors and moves robot backward at high speed.
e. Sharp Right: This will activate both motors (Right Motor Reveres and Left Motor forward)
and makes a 90-degree point turn.
f. Slow Right: This will activate left motor and makes a 90-degree wide turn.
g. Sharp Left: This will activate both motors (Right Motor forward and Left Motor reverse)
and makes a 90-degree point turn.
h. Slow Left: This will activate right motor and makes a 90-degree wide turn.
i. Zigzag: This will activate both motors alternatively to move forward in a zig zag pattern. j. Stop: both motors
deactivated
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1924
© 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1925
5. SCOPE FOR FUTURE WORK
This work can be optimized by the deployment of servo motors. And for automated tracking, an automatic targeting
system can be utilized and implemented in the robot. Using a long- range module instead of short range Zigbee module
can be implemented. To optimize the robot’s performance, technologies like Image processing can be used to detect
and identify objects. Techniques of power optimization like sleep and wake-up schedules can be incorporated.
6. RESULT
This can help the elderly and disabled as they can listen to the voices of their masters and act accordingly. They can be
used in numerous assistances like wheel-chair assistances, navigation in thermal and nuclear plants, and many
industries.
7. REFERENCES
[1] Humayun Rashid, Iftekhar Uddin Ahmed, Qader Newaz, SM Taslim Reza, Sayed Bin Osman and Md. Rasheduzza-
man, “Design and Implementation of a Voice Controlled robot with human Interaction Ability, Jan 2007, IJNTEC.
[2] Arvind Kumar Saini, Kamal Kishore, Choure, “BluBO: Bluetooth Controlled Robot” , IISR , NCKITE , 10-11 April 2015.
[3] Vineeth Teeda, K.Sujatha, Rajesh Mutukuru; August 2016,; ISSN: 2249 8958, IJEAT, Volume-5, Issue-6.
[4] D.Saravanan, R.Parthiban, G.I.Archanaa, 2018; International Journal Of Pure and Applied Mathematics, Volume 118,
No. 18 , 2097-2105.
[5]Mrumal.K.Pathak, Javed Khan “ROBOT CONTROL DESIGN Using Android Smartphone”, 2 Feb 2015, ISSN:2347-
5471.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072

More Related Content

What's hot

IRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement TrailerIRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement TrailerIRJET Journal
 
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoTIRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoTIRJET Journal
 
IRJET- Smart Vehicle Automation with Blackbox using IoT
IRJET- Smart Vehicle Automation with Blackbox using IoTIRJET- Smart Vehicle Automation with Blackbox using IoT
IRJET- Smart Vehicle Automation with Blackbox using IoTIRJET Journal
 
Arduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech RobotArduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech Robotijtsrd
 
IRJET- Rescue Robot using ESP Microcontroller
IRJET-  	  Rescue Robot using ESP MicrocontrollerIRJET-  	  Rescue Robot using ESP Microcontroller
IRJET- Rescue Robot using ESP MicrocontrollerIRJET Journal
 
IOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring SystemIOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring SystemDr. Amarjeet Singh
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEIAEME Publication
 
IJSRED-V2I2P26
IJSRED-V2I2P26IJSRED-V2I2P26
IJSRED-V2I2P26IJSRED
 
SMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
SMART INTELLIGENT SECURITY SYSTEM FOR WOMENSMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
SMART INTELLIGENT SECURITY SYSTEM FOR WOMENIAEME Publication
 
IRJET- Smart Garbage Monitoring System using Internet Of Things
IRJET-  	  Smart Garbage Monitoring System using Internet Of ThingsIRJET-  	  Smart Garbage Monitoring System using Internet Of Things
IRJET- Smart Garbage Monitoring System using Internet Of ThingsIRJET Journal
 
IRJET - Smart Traffic System for Emergence Vehicles
IRJET - Smart Traffic System for Emergence VehiclesIRJET - Smart Traffic System for Emergence Vehicles
IRJET - Smart Traffic System for Emergence VehiclesIRJET Journal
 
IRJET- Smart Voting System
IRJET- Smart Voting SystemIRJET- Smart Voting System
IRJET- Smart Voting SystemIRJET Journal
 
IRJET- Low Cost IoT based Remote Health Monitoring System
IRJET-  	  Low Cost IoT based Remote Health Monitoring SystemIRJET-  	  Low Cost IoT based Remote Health Monitoring System
IRJET- Low Cost IoT based Remote Health Monitoring SystemIRJET Journal
 
Smart Robotic Assistant using IOT
Smart Robotic Assistant using IOTSmart Robotic Assistant using IOT
Smart Robotic Assistant using IOTIRJET Journal
 
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...IRJET Journal
 

What's hot (20)

IRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement TrailerIRJET- Survey Paper on Automatic Cart Movement Trailer
IRJET- Survey Paper on Automatic Cart Movement Trailer
 
SMART APP FOR PHYSICALLY CHALLENGED PEOPLE USING INTERNET OF THINGS
SMART APP FOR PHYSICALLY CHALLENGED  PEOPLE USING INTERNET OF THINGSSMART APP FOR PHYSICALLY CHALLENGED  PEOPLE USING INTERNET OF THINGS
SMART APP FOR PHYSICALLY CHALLENGED PEOPLE USING INTERNET OF THINGS
 
DIGITAL NOTICEBOARD USING IOT
DIGITAL NOTICEBOARD USING IOTDIGITAL NOTICEBOARD USING IOT
DIGITAL NOTICEBOARD USING IOT
 
Smart Home Automation System
Smart Home Automation SystemSmart Home Automation System
Smart Home Automation System
 
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoTIRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
 
SENSOR DATA COMMUNICATION TO THNIGSPEAK IOT PLATFORM USING RASPBERRY P
SENSOR DATA COMMUNICATION TO THNIGSPEAK  IOT PLATFORM USING RASPBERRY PSENSOR DATA COMMUNICATION TO THNIGSPEAK  IOT PLATFORM USING RASPBERRY P
SENSOR DATA COMMUNICATION TO THNIGSPEAK IOT PLATFORM USING RASPBERRY P
 
IRJET- Smart Vehicle Automation with Blackbox using IoT
IRJET- Smart Vehicle Automation with Blackbox using IoTIRJET- Smart Vehicle Automation with Blackbox using IoT
IRJET- Smart Vehicle Automation with Blackbox using IoT
 
Arduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech RobotArduino Based Voice Generator Text to Speech Robot
Arduino Based Voice Generator Text to Speech Robot
 
IRJET- Rescue Robot using ESP Microcontroller
IRJET-  	  Rescue Robot using ESP MicrocontrollerIRJET-  	  Rescue Robot using ESP Microcontroller
IRJET- Rescue Robot using ESP Microcontroller
 
IOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring SystemIOT Cloud Based Real Time Automobile Monitoring System
IOT Cloud Based Real Time Automobile Monitoring System
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
 
IJSRED-V2I2P26
IJSRED-V2I2P26IJSRED-V2I2P26
IJSRED-V2I2P26
 
SMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
SMART INTELLIGENT SECURITY SYSTEM FOR WOMENSMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
SMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
 
IRJET- Smart Garbage Monitoring System using Internet Of Things
IRJET-  	  Smart Garbage Monitoring System using Internet Of ThingsIRJET-  	  Smart Garbage Monitoring System using Internet Of Things
IRJET- Smart Garbage Monitoring System using Internet Of Things
 
IRJET - Smart Traffic System for Emergence Vehicles
IRJET - Smart Traffic System for Emergence VehiclesIRJET - Smart Traffic System for Emergence Vehicles
IRJET - Smart Traffic System for Emergence Vehicles
 
IMPLEMENTATION OF SECURE DOOR AUTOMATION SYSTEMS USING INFRARED SENSORS
IMPLEMENTATION OF SECURE DOOR AUTOMATION SYSTEMS USING  INFRARED SENSORS IMPLEMENTATION OF SECURE DOOR AUTOMATION SYSTEMS USING  INFRARED SENSORS
IMPLEMENTATION OF SECURE DOOR AUTOMATION SYSTEMS USING INFRARED SENSORS
 
IRJET- Smart Voting System
IRJET- Smart Voting SystemIRJET- Smart Voting System
IRJET- Smart Voting System
 
IRJET- Low Cost IoT based Remote Health Monitoring System
IRJET-  	  Low Cost IoT based Remote Health Monitoring SystemIRJET-  	  Low Cost IoT based Remote Health Monitoring System
IRJET- Low Cost IoT based Remote Health Monitoring System
 
Smart Robotic Assistant using IOT
Smart Robotic Assistant using IOTSmart Robotic Assistant using IOT
Smart Robotic Assistant using IOT
 
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
IRJET - Home Appliance Controlling and Monitoring by Mobile Application based...
 

Similar to IRJET - Voice Controlled Robot using NodeMCU

IRJET- Voice Controlled Robot using Wi-Fi Module
IRJET-  	  Voice Controlled Robot using Wi-Fi ModuleIRJET-  	  Voice Controlled Robot using Wi-Fi Module
IRJET- Voice Controlled Robot using Wi-Fi ModuleIRJET Journal
 
IRJET - Pick and Place Surveillance Robot
IRJET -  	  Pick and Place Surveillance RobotIRJET -  	  Pick and Place Surveillance Robot
IRJET - Pick and Place Surveillance RobotIRJET Journal
 
IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...
IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...
IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...IRJET Journal
 
IRJET - Home Automation for Physically Challenged and Elder People
IRJET -  	  Home Automation for Physically Challenged and Elder PeopleIRJET -  	  Home Automation for Physically Challenged and Elder People
IRJET - Home Automation for Physically Challenged and Elder PeopleIRJET Journal
 
REVIEW ON WIRELESS VOICE CONTROLLED ROBOT
REVIEW ON WIRELESS VOICE CONTROLLED ROBOTREVIEW ON WIRELESS VOICE CONTROLLED ROBOT
REVIEW ON WIRELESS VOICE CONTROLLED ROBOTIRJET Journal
 
IRJET- Wireless Video Surveillance Robot
IRJET-  	  Wireless Video Surveillance RobotIRJET-  	  Wireless Video Surveillance Robot
IRJET- Wireless Video Surveillance RobotIRJET Journal
 
IRJET- Robot Car Controlled by using Google Assistant
IRJET- Robot Car Controlled by using Google AssistantIRJET- Robot Car Controlled by using Google Assistant
IRJET- Robot Car Controlled by using Google AssistantIRJET Journal
 
Internet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic ArmInternet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic ArmIRJET Journal
 
IRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled RobotIRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled RobotIRJET Journal
 
IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...
IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...
IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...IRJET Journal
 
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET Journal
 
IRJET - Organisation Automation Using Android Mobile Application
IRJET - Organisation Automation Using Android Mobile ApplicationIRJET - Organisation Automation Using Android Mobile Application
IRJET - Organisation Automation Using Android Mobile ApplicationIRJET Journal
 
IRJET- Multipurpose Military Spying Robot
IRJET- Multipurpose Military Spying RobotIRJET- Multipurpose Military Spying Robot
IRJET- Multipurpose Military Spying RobotIRJET Journal
 
IRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart CarIRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart CarIRJET Journal
 
IRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart CarIRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart CarIRJET Journal
 
IRJET- Voice Recognition -Butler Bot
IRJET-  	  Voice Recognition -Butler BotIRJET-  	  Voice Recognition -Butler Bot
IRJET- Voice Recognition -Butler BotIRJET Journal
 
AI Cum AR Based Smart Home Automation System
AI Cum AR Based Smart Home Automation SystemAI Cum AR Based Smart Home Automation System
AI Cum AR Based Smart Home Automation SystemIRJET Journal
 
IRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring SystemIRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring SystemIRJET Journal
 
IRJET - Implementation of SDC: Self-Driving Car based on Raspberry Pi
IRJET - Implementation of SDC: Self-Driving Car based on Raspberry PiIRJET - Implementation of SDC: Self-Driving Car based on Raspberry Pi
IRJET - Implementation of SDC: Self-Driving Car based on Raspberry PiIRJET Journal
 
IOT BASED SMART CITY
IOT BASED SMART CITYIOT BASED SMART CITY
IOT BASED SMART CITYIRJET Journal
 

Similar to IRJET - Voice Controlled Robot using NodeMCU (20)

IRJET- Voice Controlled Robot using Wi-Fi Module
IRJET-  	  Voice Controlled Robot using Wi-Fi ModuleIRJET-  	  Voice Controlled Robot using Wi-Fi Module
IRJET- Voice Controlled Robot using Wi-Fi Module
 
IRJET - Pick and Place Surveillance Robot
IRJET -  	  Pick and Place Surveillance RobotIRJET -  	  Pick and Place Surveillance Robot
IRJET - Pick and Place Surveillance Robot
 
IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...
IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...
IOT Virtual Doctor Robot for Online Doctor Consultation of Patient Healthcare...
 
IRJET - Home Automation for Physically Challenged and Elder People
IRJET -  	  Home Automation for Physically Challenged and Elder PeopleIRJET -  	  Home Automation for Physically Challenged and Elder People
IRJET - Home Automation for Physically Challenged and Elder People
 
REVIEW ON WIRELESS VOICE CONTROLLED ROBOT
REVIEW ON WIRELESS VOICE CONTROLLED ROBOTREVIEW ON WIRELESS VOICE CONTROLLED ROBOT
REVIEW ON WIRELESS VOICE CONTROLLED ROBOT
 
IRJET- Wireless Video Surveillance Robot
IRJET-  	  Wireless Video Surveillance RobotIRJET-  	  Wireless Video Surveillance Robot
IRJET- Wireless Video Surveillance Robot
 
IRJET- Robot Car Controlled by using Google Assistant
IRJET- Robot Car Controlled by using Google AssistantIRJET- Robot Car Controlled by using Google Assistant
IRJET- Robot Car Controlled by using Google Assistant
 
Internet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic ArmInternet of Things (Iot) Based Robotic Arm
Internet of Things (Iot) Based Robotic Arm
 
IRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled RobotIRJET- Artificial Intelligence based Voice Controlled Robot
IRJET- Artificial Intelligence based Voice Controlled Robot
 
IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...
IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...
IRJET - Survey on Smart System for Non Smart Devices using Raspberry PI3b & G...
 
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
IRJET- Line following and Obstacle avoiding Bluetooth Controlled Surveillance...
 
IRJET - Organisation Automation Using Android Mobile Application
IRJET - Organisation Automation Using Android Mobile ApplicationIRJET - Organisation Automation Using Android Mobile Application
IRJET - Organisation Automation Using Android Mobile Application
 
IRJET- Multipurpose Military Spying Robot
IRJET- Multipurpose Military Spying RobotIRJET- Multipurpose Military Spying Robot
IRJET- Multipurpose Military Spying Robot
 
IRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart CarIRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart Car
 
IRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart CarIRJET- Multi-Featured Android Controlled Smart Car
IRJET- Multi-Featured Android Controlled Smart Car
 
IRJET- Voice Recognition -Butler Bot
IRJET-  	  Voice Recognition -Butler BotIRJET-  	  Voice Recognition -Butler Bot
IRJET- Voice Recognition -Butler Bot
 
AI Cum AR Based Smart Home Automation System
AI Cum AR Based Smart Home Automation SystemAI Cum AR Based Smart Home Automation System
AI Cum AR Based Smart Home Automation System
 
IRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring SystemIRJET - Compactness based Traffic Signal Monitoring System
IRJET - Compactness based Traffic Signal Monitoring System
 
IRJET - Implementation of SDC: Self-Driving Car based on Raspberry Pi
IRJET - Implementation of SDC: Self-Driving Car based on Raspberry PiIRJET - Implementation of SDC: Self-Driving Car based on Raspberry Pi
IRJET - Implementation of SDC: Self-Driving Car based on Raspberry Pi
 
IOT BASED SMART CITY
IOT BASED SMART CITYIOT BASED SMART CITY
IOT BASED SMART CITY
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024Mark Billinghurst
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort servicejennyeacort
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...VICTOR MAESTRE RAMIREZ
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxKartikeyaDwivedi3
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2RajaP95
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...Soham Mondal
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and usesDevarapalliHaritha
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxDeepakSakkari2
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girlsssuser7cb4ff
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 

Recently uploaded (20)

IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024IVE Industry Focused Event - Defence Sector 2024
IVE Industry Focused Event - Defence Sector 2024
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort serviceGurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
Gurgaon ✡️9711147426✨Call In girls Gurgaon Sector 51 escort service
 
Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...Software and Systems Engineering Standards: Verification and Validation of Sy...
Software and Systems Engineering Standards: Verification and Validation of Sy...
 
Concrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptxConcrete Mix Design - IS 10262-2019 - .pptx
Concrete Mix Design - IS 10262-2019 - .pptx
 
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2HARMONY IN THE HUMAN BEING - Unit-II UHV-2
HARMONY IN THE HUMAN BEING - Unit-II UHV-2
 
young call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Serviceyoung call girls in Green Park🔝 9953056974 🔝 escort Service
young call girls in Green Park🔝 9953056974 🔝 escort Service
 
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
OSVC_Meta-Data based Simulation Automation to overcome Verification Challenge...
 
power system scada applications and uses
power system scada applications and usespower system scada applications and uses
power system scada applications and uses
 
Biology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptxBiology for Computer Engineers Course Handout.pptx
Biology for Computer Engineers Course Handout.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Call Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call GirlsCall Girls Narol 7397865700 Independent Call Girls
Call Girls Narol 7397865700 Independent Call Girls
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 

IRJET - Voice Controlled Robot using NodeMCU

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1921 VOICE CONTROLLED ROBOT USING NODEMCU P.C. Karthik1, Rudra Pratap Singh2, Mukul Gupta3 1,2,3(Department of Computer Science and Science and Engineering, SRM-IST, KTR, India) -----------------------------------------------------------------------------------***--------------------------------------------------------------------------- Abstract- Voice Controlled Robot is a robot which can be motion-controlled by giving specific voice commands on the mobile application by user. The first important aspect in the term -voice control is speech recognition. Speech recognition is the capability of an electronic device to understand and respond to spoken commands. It involves the processing of speech to the textual commands. This allows it to be used in a lot of applications ranging from controlling machineries to being our Personal Digital Assistant (PDA). An Android Application will be the speech recognition platform which will communicate with the robot via the Internet. Moreover, the robot will also be capable to detect obstacles and give the live transmission with the help of ultrasonic sensors and a camera mounted on it. Our proposal is a technique which is based on IOT with Artificial Intelligence. It can be useful for numerous applications such as assistive robots for elderly and people with disabilities or as working robots in many industrial applications. It can also be used for navigation in thermal plants and nuclear plants. An Arduino IDE using Embedded C is used as the software to run the Application. Index Terms- Nodemcu, Speech recognition, Android application, sensors, Artificial Intelligence. 1. INTRODUCTION Internet of Things (IOT) refers to the network of connected physical electronic devices which can communicate and exchange data among themselves and respond to commands without any human intervention. It has been formally defined as an “Infrastructure of Information Society” because IoT permits us to amass information from all kind of mediums such as humans, home, wearables, transportation, animals and kitchen appliances. Thus, any object in the physical world which can be provided with an address to enable data transmission over a network can be made part of IoT system by embedding them with electronic hardware such as sensors, software and networking gear. IoT devices when implemented with artificial intelligence will make a much more smarter device because the machine can learn on its own and make an efficient use of its resources. AI is a simulation of programs which can mimic human cognition. These programs includes learning, reasoning, problem solving and self- correction. Numerous applications of AI are Speech recognition and Machine Learning. Artificial intelligence has made its way into a number of areas. The three main examples of it are: AI in healthcare: The biggest stake is on improving patient reports and outcomes and reducing costs of treatments. Companies are applying machine learning to make better and faster diagnosis with technology [1]. AI in education: AI can personalize learning, automate grading, provide smart content and provide a new height to teaching efficiency. AI can assess students and adapt to their needs [2]. AI in finance: AI is helping in most of the domains of finance industry such as Risk Assessment, Trading, Financial Advisory, Personal finance and Fraud Detection. Applications such as Mint or Turbo Tax, is disrupting a large number of financial institutions. These applications can collect personal data and provide financial advices [3]. 2. LITERATURE SUREVEY A smartphone is used to simplify and to increase the efficiency of processing of the voice commands. With their own independent OS and internet connection they are increasingly being used in numerous applications [1]. One of the major features that we shall be making use of is - the Internet. An internet connection will allow the phone to communicate with the robot. Several Operating Systems
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1922 are used for smart phones but the most common and efficient one is the Android OS developed by Google Inc. The Internet exchanges data easily and is a very proficient way of communication between two devices such as microcontroller and a smart phone [2]. The robot can either maintain preset linear speed or can have variable speed on flat surfaces. The voice recognition is done with the help of a micro controller: NodeMcu. For detection and avoiding obstacles, an ultra-sonic module is implemented, which is programmed to stop the robot if there is any obstruction in its way, and it will inform the user to use another voice command[3]. 3. PROPOSED SYSTEM 3.1 BLOCK DIAGRAM 3.2 HARDWARE It includes NodeMcu, a L298 serial motor driver, a control circuit and ultrasonic transmitter and receiver. Node MCU is a microcontroller and a low-cost open source IoT platform. It includes firmware which runs on the ESP82666 Wi-Fi SoC from Espressif Systems and hardware which is based on the ESP-12 module. This firmware uses ‘Lua’ Scripting language .The L298 H- Bridge is Serial Motor Driver board which has dual bidirectional motor based on L298 chip. It contains two ‘H bridges’ which are of high voltage and current full bridge drivers that can drive two DC motors. First one is, L298 motor which can independently control two motors of up to 2A each in both directions. The second is L298 IC, which amplifies an output current as the current from the microcontroller is not enough to drive the DC motor directly. The HC-SR04 ultrasonic sensor measures distance from an object using Sonar. It provides 2 cm – 400 cm non-contact measurement function, and the ranging accuracy that can reach upto 3mm. Additionally, it also includes a simple sound making module called Digital Buzzer that you can use to low/high it. The buzzer will send sound signals whenever the robot senses any obstacle around its path. 3.3 SOFTWARE Firebase is an application development platform for both web and mobile. It is embedded into your app and will store your data online. Firebase can also be used as the Authentication system. A user can send and retrieve the required data at any time. The voice commands to the robot are processed via an android application and transferred via Internet. Due to its flexibility and numerous features, Android OS is used as speech recognition platform. Android OS also allows an easy and reliable connection with the Google Speech processing libraries for smooth speech recognition. MIT App Inventor 2 is a tool which allows easy creation of android Apps via drag and drop block programming. This provides people with little to no experience in Java programming, a way to develop simple applications to suit their purposes. Now, once the app launches, the user will have to connect to
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1923 the robot via the Internet.. After clicking the microphone button it will record the speech. The recorded audio is processed and the transcribed text is displayed and will be sent to internet in the form of a string or character array. 4. CONTROLLING OF ROBOT Now, the commands will be received in text form by the robot. This is done by the connected Bluetooth receiver at the robot end. Initially the robot will wait for an incoming connection. When available, the text will be parsed character by character to the robot. The Arduino will then build the characters into a single word. A small delay of 100 milliseconds is implemented in building the word, so as to prevent overwriting or loss of any character. Once the command has been received the Arduino then compares the text to the preprogrammed instruction set as follows: a. Slow Forward: This will activate both motors and will move robot forward at low speed. b. Fast Forward: This will activate both motors and move robot forward at full speed. c. Slow Backward: This will activate both motors and will move robot backward at low speed. d. Fast Backward: This will activate both motors and moves robot backward at high speed. e. Sharp Right: This will activate both motors (Right Motor Reveres and Left Motor forward) and makes a 90-degree point turn. f. Slow Right: This will activate left motor and makes a 90-degree wide turn. g. Sharp Left: This will activate both motors (Right Motor forward and Left Motor reverse) and makes a 90-degree point turn. h. Slow Left: This will activate right motor and makes a 90-degree wide turn. i. Zigzag: This will activate both motors alternatively to move forward in a zig zag pattern. j. Stop: both motors deactivated
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072 © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1924
  • 5. © 2020, IRJET | Impact Factor value: 7.34 | ISO 9001:2008 Certified Journal | Page 1925 5. SCOPE FOR FUTURE WORK This work can be optimized by the deployment of servo motors. And for automated tracking, an automatic targeting system can be utilized and implemented in the robot. Using a long- range module instead of short range Zigbee module can be implemented. To optimize the robot’s performance, technologies like Image processing can be used to detect and identify objects. Techniques of power optimization like sleep and wake-up schedules can be incorporated. 6. RESULT This can help the elderly and disabled as they can listen to the voices of their masters and act accordingly. They can be used in numerous assistances like wheel-chair assistances, navigation in thermal and nuclear plants, and many industries. 7. REFERENCES [1] Humayun Rashid, Iftekhar Uddin Ahmed, Qader Newaz, SM Taslim Reza, Sayed Bin Osman and Md. Rasheduzza- man, “Design and Implementation of a Voice Controlled robot with human Interaction Ability, Jan 2007, IJNTEC. [2] Arvind Kumar Saini, Kamal Kishore, Choure, “BluBO: Bluetooth Controlled Robot” , IISR , NCKITE , 10-11 April 2015. [3] Vineeth Teeda, K.Sujatha, Rajesh Mutukuru; August 2016,; ISSN: 2249 8958, IJEAT, Volume-5, Issue-6. [4] D.Saravanan, R.Parthiban, G.I.Archanaa, 2018; International Journal Of Pure and Applied Mathematics, Volume 118, No. 18 , 2097-2105. [5]Mrumal.K.Pathak, Javed Khan “ROBOT CONTROL DESIGN Using Android Smartphone”, 2 Feb 2015, ISSN:2347- 5471. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 07 Issue: 04 | Apr 2020 www.irjet.net p-ISSN: 2395-0072