SlideShare a Scribd company logo
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 Trailer
IRJET Journal
 
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
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
DIGITAL NOTICEBOARD USING IOT
DIGITAL NOTICEBOARD USING IOTDIGITAL NOTICEBOARD USING IOT
Smart Home Automation System
Smart Home Automation SystemSmart Home Automation System
Smart Home Automation System
SubmissionResearchpa
 
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoTIRJET  -  	  Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET - Real Time Fuel Monitoring and Theft Detection System using IoT
IRJET Journal
 
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
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
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
IRJET 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 Robot
ijtsrd
 
IRJET- Rescue Robot using ESP Microcontroller
IRJET-  	  Rescue Robot using ESP MicrocontrollerIRJET-  	  Rescue Robot using ESP Microcontroller
IRJET- Rescue Robot using ESP Microcontroller
IRJET 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 System
Dr. Amarjeet Singh
 
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLEPROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
PROMINENT NAVIGATION FOR VISUALLY IMPAIRED PEOPLE
IAEME Publication
 
IJSRED-V2I2P26
IJSRED-V2I2P26IJSRED-V2I2P26
IJSRED-V2I2P26
IJSRED
 
SMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
SMART INTELLIGENT SECURITY SYSTEM FOR WOMENSMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
SMART INTELLIGENT SECURITY SYSTEM FOR WOMEN
IAEME 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 Things
IRJET 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 Vehicles
IRJET Journal
 
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
IJTRET-International Journal of Trendy Research in Engineering and Technology
 
IRJET- Smart Voting System
IRJET- Smart Voting SystemIRJET- Smart Voting System
IRJET- Smart Voting System
IRJET 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 System
IRJET Journal
 
Smart Robotic Assistant using IOT
Smart Robotic Assistant using IOTSmart Robotic Assistant using IOT
Smart Robotic Assistant using IOT
IRJET 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 Module
IRJET Journal
 
IRJET - Pick and Place Surveillance Robot
IRJET -  	  Pick and Place Surveillance RobotIRJET -  	  Pick and Place Surveillance Robot
IRJET - Pick and Place Surveillance Robot
IRJET 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 People
IRJET Journal
 
REVIEW ON WIRELESS VOICE CONTROLLED ROBOT
REVIEW ON WIRELESS VOICE CONTROLLED ROBOTREVIEW ON WIRELESS VOICE CONTROLLED ROBOT
REVIEW ON WIRELESS VOICE CONTROLLED ROBOT
IRJET Journal
 
IRJET- Wireless Video Surveillance Robot
IRJET-  	  Wireless Video Surveillance RobotIRJET-  	  Wireless Video Surveillance Robot
IRJET- Wireless Video Surveillance Robot
IRJET 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 Assistant
IRJET 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 Arm
IRJET 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 Robot
IRJET 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 Application
IRJET Journal
 
IRJET- Multipurpose Military Spying Robot
IRJET- Multipurpose Military Spying RobotIRJET- Multipurpose Military Spying Robot
IRJET- Multipurpose Military Spying Robot
IRJET 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 Car
IRJET 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 Car
IRJET Journal
 
IRJET- Voice Recognition -Butler Bot
IRJET-  	  Voice Recognition -Butler BotIRJET-  	  Voice Recognition -Butler Bot
IRJET- Voice Recognition -Butler Bot
IRJET 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 System
IRJET 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 System
IRJET 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 Pi
IRJET Journal
 
IOT BASED SMART CITY
IOT BASED SMART CITYIOT BASED SMART CITY
IOT BASED SMART CITY
IRJET 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 STRUCTURE
IRJET 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 Characteristics
IRJET 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 ADAS
IRJET 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 Pro
IRJET 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 System
IRJET 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 bridges
IRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
IRJET 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 Design
IRJET 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

一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
ydteq
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
manasideore6
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
SyedAbiiAzazi1
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
Aditya Rajan Patra
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
WENKENLI1
 
Steel & Timber Design according to British Standard
Steel & Timber Design according to British StandardSteel & Timber Design according to British Standard
Steel & Timber Design according to British Standard
AkolbilaEmmanuel1
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
Fundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptxFundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptx
manasideore6
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Water billing management system project report.pdf
Water billing management system project report.pdfWater billing management system project report.pdf
Water billing management system project report.pdf
Kamal Acharya
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Teleport Manpower Consultant
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
thanhdowork
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
top1002
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Sreedhar Chowdam
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
ClaraZara1
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
obonagu
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 

Recently uploaded (20)

一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
一比一原版(UofT毕业证)多伦多大学毕业证成绩单如何办理
 
Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
Fundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptxFundamentals of Electric Drives and its applications.pptx
Fundamentals of Electric Drives and its applications.pptx
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
 
Recycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part IIIRecycled Concrete Aggregate in Construction Part III
Recycled Concrete Aggregate in Construction Part III
 
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdfGoverning Equations for Fundamental Aerodynamics_Anderson2010.pdf
Governing Equations for Fundamental Aerodynamics_Anderson2010.pdf
 
Steel & Timber Design according to British Standard
Steel & Timber Design according to British StandardSteel & Timber Design according to British Standard
Steel & Timber Design according to British Standard
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
Fundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptxFundamentals of Induction Motor Drives.pptx
Fundamentals of Induction Motor Drives.pptx
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Water billing management system project report.pdf
Water billing management system project report.pdfWater billing management system project report.pdf
Water billing management system project report.pdf
 
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdfTop 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
Top 10 Oil and Gas Projects in Saudi Arabia 2024.pdf
 
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
RAT: Retrieval Augmented Thoughts Elicit Context-Aware Reasoning in Long-Hori...
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
Basic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparelBasic Industrial Engineering terms for apparel
Basic Industrial Engineering terms for apparel
 
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&BDesign and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
Design and Analysis of Algorithms-DP,Backtracking,Graphs,B&B
 
6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)6th International Conference on Machine Learning & Applications (CMLA 2024)
6th International Conference on Machine Learning & Applications (CMLA 2024)
 
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
在线办理(ANU毕业证书)澳洲国立大学毕业证录取通知书一模一样
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 

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