Monday, 24 December 2018

Voice Recognition Wireless Home Automation

Voice Recognition Wireless Home Automation & Sensors Monitoring System Based On Bluetooth
https://youtu.be/wqtle1pC-iE



ABSTRACT
AIM:


The main objective of this project is to develop a home automation system using an Arduino board with Bluetooth being remotely controlled by any Android OS smart phone. As technology is advancing so houses are also getting smarter. Modern houses are gradually shifting from conventional switches to centralized control system, involving remote controlled switches. Presently, conventional wall switches located in different parts of the house makes it difficult for the user to go near them to operate. Even more it becomes more difficult for the elderly or physically handicapped people to do so. Remote controlled home automation system provides a most modern solution with smart phones.
In order to achieve this, a Bluetooth module is interfaced to the Arduino board at the receiver end while on the transmitter end, a GUI application on the cell phone sends ON/OFF commands to the receiver where loads are connected. By touching the specified location on the GUI, the loads can be turned ON/OFF remotely through this technology. The loads are operated by Arduino board through opto-isolators and thyristors using triacs.


android app link :
https://play.google.com/store/apps/details?id=appinventor.ai_cempehlivan92.Arduino_Sesli_Kontrol






software code:


#include <LiquidCrystal.h>
#include <SoftwareSerial.h>
LiquidCrystal lcd(7,8,9,10,11,12);//rs,en,data pins d4 -d7
SoftwareSerial myserial(4, 5); // RX, TX
int led1 = 3; //Connect LED 1 To Pin #2 
int led2 = 4; //Connect LED 2 To Pin #3 
int led3 = 5; //Connect LED 3 To Pin #6 
int led4 = 6; //Connect LED4 To Pin #1 

String voice;
char c;
int val;
float TEMP;
unsigned int SMOKE;
const int buzz=13;      // the number of the LED pin

void setup() 
{
lcd.begin(16,2);
pinMode(buzz, OUTPUT);  
pinMode(led1, OUTPUT); 
pinMode(led2, OUTPUT); 
pinMode(led3, OUTPUT); 
pinMode(led4, OUTPUT);
myserial.begin(9600);
myserial.println("voice based home automation using bt");
lcd.setCursor(0,0);
lcd.print("VOICE BASED HOME");
lcd.setCursor(0,1);
lcd.print("AUTOMATION B.T");
delay (3000);
lcd.clear();

}
void allon(){digitalWrite(led1, HIGH);delay (300);digitalWrite(led2, HIGH);delay (300);digitalWrite(led3, HIGH);delay (300); digitalWrite(led4, HIGH);delay (300);}
void alloff(){digitalWrite(led1, LOW);delay (300);digitalWrite(led2, LOW);delay (300);digitalWrite(led3, LOW);delay (300);digitalWrite(led4, LOW);delay (300);}
//-----------------------------------------------------------------------//  
void loop() 
{
val = analogRead(0);float T=( val/1024.0)*5000;float TEMP= T/10;
SMOKE = analogRead(1);
lcd.setCursor(0,0);lcd.print("T:");lcd.setCursor(3,0);lcd.print(TEMP);delay (50);
lcd.setCursor(0,1);lcd.print("S: ");lcd.setCursor(3,1);lcd.print(SMOKE);delay (50);
if (TEMP>60)
{digitalWrite(buzz, HIGH);myserial.println("OVER TEMPERATRE");myserial.print("TEMP:");myserial.print( TEMP);myserial.println("deg");delay (10);}
if (TEMP<60)
{digitalWrite(buzz, LOW);}

if (SMOKE>750)
{digitalWrite(buzz, HIGH);myserial.println("SMOKE ALERT");myserial.print("SMOKE:");myserial.print( SMOKE);myserial.println(" ");delay (10);}
if (SMOKE<750)
{digitalWrite(buzz, LOW);}

//////////////////////////////////////////////////////////////////////////////////////////
while (myserial.available()){  //Check if there is an available byte to read
delay(10); //Delay added to make thing stable 
char c = myserial.read(); //Conduct a serial read
if (c == '#') {break;} //Exit the loop when the # is detected after the word
voice += c; //Shorthand for voice = voice + c
}  
if (voice.length() > 0) {
Serial.println(voice); 
//-----------------------------------------------------------------------//    
//----------Control Multiple Pins/ LEDs----------//  
if(voice == "*all on"){lcd.clear();lcd.setCursor(0,0);lcd.print("all on");allon();myserial.println("all on");delay (3000);lcd.clear();}  //Turn on All Pins (Call Function)
else if(voice == "*all of"){lcd.clear();lcd.setCursor(0,0);lcd.print("all off");alloff();myserial.println("all off");delay (3000);lcd.clear();} //Turn off  All Pins (Call Function)
//----------Turn On One-By-One----------// 
else if(voice == "*light on"){lcd.clear();lcd.setCursor(0,0);lcd.print("light on");digitalWrite(led1, HIGH);myserial.println("light on");delay (3000);lcd.clear();} 
else if(voice == "*bulb on"){lcd.clear();lcd.setCursor(0,0);lcd.print("bulb on");digitalWrite(led3, HIGH);myserial.println("bulb on");delay (3000);lcd.clear();}
else if(voice == "*LED on"){lcd.clear();lcd.setCursor(0,0);lcd.print("LED ON");digitalWrite(led4, HIGH);myserial.println("LED on");delay (3000);lcd.clear();}
else if(voice == "*fan on"){lcd.clear();lcd.setCursor(0,0);lcd.print("fan on");digitalWrite(led2, HIGH);myserial.println("fan on");delay (3000);lcd.clear();}
else if(voice == "*DC on"){lcd.clear();lcd.setCursor(0,0);lcd.print("DC MOTOR/FAN ON");digitalWrite(led2, HIGH);myserial.println("DCMOTOR on");delay (3000);lcd.clear();}
else if(voice == "*AC on"){lcd.clear();lcd.setCursor(0,0);lcd.print("AC on");digitalWrite(led2, HIGH);myserial.println("AC on");delay (3000);lcd.clear();}
//----------Turn Off One-By-One----------// 
else if(voice == "*light off"){lcd.clear();lcd.setCursor(0,0);lcd.print("light off");digitalWrite(led1, LOW);myserial.println("light off");delay (3000);lcd.clear();} 
else if(voice == "*bulb of"){lcd.clear();lcd.setCursor(0,0);lcd.print("bulb of");digitalWrite(led3, LOW);myserial.println("bulb oF");delay (3000);lcd.clear();}
else if(voice == "*LED off"){lcd.clear();lcd.setCursor(0,0);lcd.print("LED OFF");digitalWrite(led4, LOW);myserial.println("LED OFF");delay (3000);lcd.clear();}
else if(voice == "*fan of"){lcd.clear();lcd.setCursor(0,0);lcd.print("fan off");digitalWrite(led2, LOW);myserial.println("fan of");delay (3000);lcd.clear();}
else if(voice == "*DC of"){lcd.clear();lcd.setCursor(0,0);lcd.print("DC MOTOR/FAN OFF");digitalWrite(led2, LOW);myserial.println("DCMOTOR OFF");delay (3000);lcd.clear();}
else if(voice == "*AC off"){lcd.clear();lcd.setCursor(0,0);lcd.print("AC oFF");digitalWrite(led2, LOW);myserial.println("AC OFF");delay (3000);lcd.clear();}
//-----------------------------------------------------------------------//  
voice="";}} //Reset the variable after initiating


Friday, 21 December 2018

IOT Based Agriculture Crop - Field Monitoring System and Irrigation Automation

IOT Based Agriculture Crop - Field Monitoring System and Irrigation Automation
https://www.youtube.com/watch?v=SlC8BWP4mVk

1. IOT Based Agriculture Crop - Field Monitoring System and Irrigation Automation. 2. IOT based crop-field monitoring and irrigation automation - IEEE Xplore 3. iot sensor network based approach for agricultural field monitoring 4. Smart Agriculture System with IoT 5. Field Monitoring and Automation Using IOT in Agriculture Domain 6. Smart Agriculture System with IoT - Hackster.io 7. Wireless Sensor Based Remote Monitoring System for Agriculture 8. Agricultural Field Monitoring System Using ARM - IJAREEIE 9. IoT project Agriculture Field monitoring system 10. Agriculture: Automated Irrigation System for Agricultural Crop Field 11. An Approach for Agricultural Field Monitoring and Control Using IoT 12. Review for ARM Based Agricultural Field Monitoring System 13. LOW COST Agricultural IRRIGATION BASED PROJECTS 14. iot in agriculture pdf 15. iot based agricultural projects 16. iot based smart agriculture ppt 17. internet of things applications in agriculture 18. iot based crop field monitoring and irrigation automation 19. development of iot based smart security and monitoring devices for agriculture 20. iot in agriculture ppt 21. iot based automated irrigation system 22. Smart E-Agriculture Monitoring Using Internet Of Things - IJERA 23. Sensor based Automated Irrigation System with IOT 24. Study on an Agricultural Environment Monitoring Server System using iot 25. Iot Based Smart Agriculture Monitoring System - ijritcc 26. IoT based Smart Agriculture - IJARCCE 27. Automatic Monitoring System for a Precision Agriculture Based On 28. Wireless Sensor Based Remote Controlled Agriculture Monitoring 29. Real-Time Implementation and Analysis of Crop-Field for Agriculture 30. A REVIEW ON SMART SENSORS BASED MONITORING SYSTEM 31. A Survey of Futuristic Approach on Smart Agriculture 32. Internet of Things based approach to Agriculture Monitoring 33. Sensor-based M2M Agriculture Monitoring Systems 34. SAVE CROP: Internet of Things system for agriculture - Auroras srl 35. Agriculture iot system - Coda-Clips 36. Arduino Based Smart Drip Irrigation System Using Internet of Things 37. How Internet Of Things Is Modernizing Agriculture Landscape 38. Internet of Things Greenhouse Monitoring and Automation System 39. Wireless Monitoring of Soil Moisture, Temperature & Humidity 40. Real-Time Monitoring Of Agricultural Activities Using Wireless Sensor 41. A Test-bed on Real-time Monitoring of Agricultural 42. Intelligent Agricultural Solutions - Advantech 43. IOT BASED SMART AGRICULTURE RESEARCH OPPORTUNITIES 44. Wireless Sensor-based Agricultural Monitoring System 45. Implementation of Wireless Sensor Network for Real Time Monitoring 46. Monitoring for Precision Agriculture using Wireless SensorNetwork 47. Distributed Monitoring Systems for Agriculture based 48. Smart soil moisture monitoring system 49. Internet of Things Implementation for Wireless Monitoring

IOT Projects : RFID Based Mobile Payment System Using GSM - GPRS Network

IOT Projects : RFID Based Mobile Payment System Using GSM - GPRS Network

https://www.youtube.com/watch?v=0gu9ALJWBdI


iot - IoT projects - IOT Projects - internet of things (IoT) - IoT - Internet of Things - IOT Based Projects - iot project ideas. Please Subscribe For More Project Videos --► http://bit.ly/29vPrS9 Slice--►http://www.svskits.in/ blog --►http://www.svskit.com/ site --►http://www.svsembedded.com/ ------------------------------------------------------------------------------------------------ 1. IOT Projects RFID Based Mobile Payment System Using GSM - GPRS Network, 2. The GPRS Mobile Payment System Based on RFID - IEEE Xplore, 3. LOW COST GSM / GPS / GPRS / IoT BASED PROJECTS - LinkedIn, 4. SVSEMBEDDED PROJECTS, +919491535690,+91-7842358459: IoT, 5. 100+ Ultimate List of IOT Projects For Engineering Students, 6. The GPRS Mobile Payment System Based on RFID, 7. Find Latest RFID Based Mobile Payment System GSM-GPRS Network, 8. ECE Projects: IEEE Latest Embedded Systems Based Final Year, 9. Mobile Payment Systems and Services, 10. GSM based Projects for Engineering Students - ElProCus, 11. Advances in Networks and Communications: First International, 12. Diploma in Embedded System Design - Nanotronics scientific solutions, 13. IoT Solutions - The Next Generation Projects | DIYguru | Courses, 14. GPS Based Automatic Vehicle Tracking Using RFID - International, 15. Intelligent Bus Monitoring and Management System - IAENG, 16. RFid Based Security System with GSM technology | Microtronics, 17. Automatic Ration Material Distributions Based on GSM and RFID, 18. RFID and GSM Based ATM Money Transfer Prototype System, 19. rfid based security and access control system using arduino with gsm, 20. 40+ GSM Based Projects for Engineering Students - Electronics Hub, 21. Automatic Toll Gate System Using Advanced RFID and GSM Technology, 22. rfid system and rfid security research papers - free IEEE Paper, 23. GSM - GPS Projects - Embedded Technosolutions, 24. Mobile Payment Systems and Services: Issues and - VentureWoods, 25. ENHANCED ATM SECURITY USING DIFFRENTIATED PASSWORDS, 26. Engineering Final Year Projects on Embedded +Wireless Systems, 27. Automatic Ration Material Distributions Based on GSM and RFID, 28. IOT Based Project: RFID Canteen Management System, 29. RFID Based Attendance System Using 8051 and GSM, 30. IJCA - Bank Locker Security System based on RFID and GSM, 31. wireless based projects - Creative Technologies, 32. bank locker security system based on rfid and gsm technology pdf, 33. bank locker security system based on rfid and gsm technology ppt, 34. Bank Locker Security System based on RFID and GSM - CiteSeerX, 35. Automatic Ration Material Distributions Based on GSM and RFID, 36. automatic rationing system using arm controller - IJARIIE, 37. Bank Locker Security System Using RFID and GSM Technology, 38. Two way password verification security system using RFID and GSM, 39. Automatic challan System using RFID Technology - JNCET, 40. Design of RFID Based Student Attendance System with Notification to, 41. RFID Based Automatic Ration Selling System - IASIR-International, 42. RFID Based Real Time Password Authentication System for ATM, 43. Automated Toll Plaza Using RFID and GSM - IJRITCC, 44. RFID and GSM based Automatic Rationing System using LPC2148, 45. RFID GSM BASED AUTOMATIC RATIONING SYSTEM, 46. automation in rationing system using gsm - Home, 47. Automatic Rationing System - IJIET, 48. Smart Ration Distribution and Controlling - International Journal of, 49. automatic ration system project, 50. smart ration card using rfid and gsm technique pdf, 51. smart ration card using rfid and gsm technique ppt, 52. rfid based ration card project abstract, 53. automatic ration material distributions based on gsm and rfid technology, 54. automatic ration distribution system pdf, 55. rfid based ration card project pdf, 56. smart ration card ppt, 57. Smart Ration Card System Using Raspberry-pi - IJARCCE, 58. Automation in Ration Product Distribution - IJAREEIE, 59. biometric device using smart card in public distributed system - IRAJ, 60. a prototype of authentication ration card system - IJSTM, 61. Smart Rationing System By Using GSM And QR-code - IJIR, 62. Automization of Rationing System - IJCEM, 63. Examination room guide using RFID and FINGER PRINT for the, 64. e-Ration System Using RFID and GSM Technolgy - sverian scientific, 65. Biometric Assisted Smart e-Public Distribution System - IJIRCCE, 66. smart ration distribution system using rfid - Pnrsolution.org, 67. a step towards digital india using smart ration card - IJMTER, 68. International Journal of Advance Engineering and Research, 69. AUTOMATION IN RATIONING FOR PUBLIC DISTRIBUTION SYSTEM, 70. automation of ration shop using plc - Find Related Free PDF Documents, 71. IEEE Transaction Project Titles - ms elektronik industries, 72. Automation Tool for Effective and Efficient Ration Products, 73. Modern Public Distribution System for Digital India - IRJET,
SHOW LESS

ATM Security System using Fingerprint and GSM Module

ATM Security System using Fingerprint and GSM Module

https://www.youtube.com/watch?v=Vb8yNpr2ELA

1. ATM Security using GSM and Fingerprint 2. ATM Terminal, Microcontroller, Fingerprint Module, GSM Modem, 3. Arm 7 based multi level security for atm access using finger 4. ATM Security System using GSM and finger Module 5. ATM-Security-System-using-GSM-and-finger-Module 6. ENHANCING ATM SECURITY USING FINGERPRINT AND GSM 7. ATM Security using GSM and Fingerprint with Authorized Permission 8. Fingerprint, ATM, GSM modem, Magnetic strip card 9. ATM Security using Fingerprint Recognition 10. High Speed ATM Security System using LPC2148 Microcontroller 11. Implementation of ATM Security by Using Fingerprint recognition 12. Bank Lockers Security System using Biometric and GSM 13. GSM FPRS Keypad Based ATM Security System BE Electronics 14. Fingerprint and GSM based Security System. 15. ATM Security System using GSM and finger Module 16. ARM7 based Smart ATM Access System 17. Microcontroller Based Smart ATM Access & Security System 18. ATM security by using fingerprint recognition and GSM MODEM 19. ATM Terminal Security Using Fingerprint Reconition 20. Fingerprint Based ATM Security by using ARM7 21. Fingerprint Based Authentication System using ARM7 22. security system for atm terminal by using biometric technology and gsm 23. GSM Based Bank Locker Security System using RFID, Password 24. locker opening and closing system using rfid, fingerprint, password 25. Design of Highly Secured Automatic Teller Machine System by Using fingerprint 26. High protection ATM system with fingerprint identification technology 27. Analysis and Automation of Security Management System for Remote 28. Implementation of ATM Security by Using Fingerprint Recognition 29. Implementation of Real Time Embedded Security System for ATM 30. Fingerprint Verification of ATM Security System by Using Biometric 31. Download ATM Security System using GSM and finger Module 32. ATM Transaction Using Biometric Fingerprint Technology 33. ATM SECURITY IMPROVEMENT USING FINGER PRINT. 34. Atm Client Authentication System Using Biometric Identifier 35. atm security system by using gsm 36. fingerprint based security system for banks 37. ATM Terminal Security using Fingerprint Recognition 38. Fingerprint Based Biometric ATM Authentication System 39. BioMatric ATM Security GSM Based - Engineer Labz 40. gsm based atm security system pdf - seminar projects 41. atm security system using gsm and mems module project 42. atm security by using fingerprint recognition and gsm 43. Design of a GSM-Based Biometric Access Control System 44. SECURITY & ACCESS CONTROL SYSTEM - MTech Projects 45. biometric high secure and cost effective finger vein 46. ATM Systems Authentication Based On Fingerprint Using ARM Cortex 47. security system using gsm fingerprint touchscreen - Full Projects Report 48. ATM Transaction Security Using Fingerprint/OTP 49. ATM Security using Fingerprint Authentication and OTP 50. Implementation of ATM Security by Using Fingerprint 51. Biometric Finger-Vein Recognition for ATM 52. An Embedded Real-Time Finger-Vein Recognition System 53. Survey of Security of ATM Machine 54. Design of Highly Secured Automatic Teller Machine System 55. Fingerprint Based ATM System 56. Arm7 based smart atm access security system using fingerprint 57. ENHANCED ATM SECURITY USING DIFFRENTIATED PASSWORDS 58. GSM Based Anti-theft Transaction System 59. embedded system main project list 2016-17 60. RFID AND GSM synthesis for authenticated ATM transaction 61. An Authentication of ATM System Using DNA bar Code 62. A NOVEL DESIGN OF FINGER VEIN RECOGNITION 63. Implementation of GSM Technology in Prison Locker System

BLUETOOTH CONTROLLED NOTICE BOARD

BLUETOOTH CONTROLLED NOTICE BOARD

BLUETOOTH CONTROLLED NOTICE BOARD - YouTube

https://www.youtube.com/watch?v=PVzaDUpraFk
1. BLUETOOTH CONTROLLED NOTICE BOARD 2. Android Controlled Notice Board Project 3. Remotely Controlled Android based Electronic Notice Board 4. Bluetooth Based wireless Notice Display using Android Application 5. Bluetooth based digital Notice board with display on Scrolling 6. Wireless Electronic Message Board using Android Remote Control 7. Android controlled Electronic Notice Board using Matrix LED Rolling 8. Voice controlled wireless Electronic notice board using Android mobile 9. Wireless Notice Board Project using Arduino 10. Electronic Notice Board using Arduino Bluetooth 11. Android Smart Phone Based Wireless Electronic Notice Board System 12. android based notice board 13. android controlled notice board project 14. bluetooth controlled robot 15. bluetooth controlled robot using android mobile 16. bluetooth controlled robot using arduino 17. bluetooth controlled robot pdf 18. bluetooth controlled robot ppt 19. bluetooth controlled robot using atmega8 20. Wireless Electronic Notice Board 21. Android mobile Based Smart Wireless Electronic Notice Board 22. Electronic Notice Board With Multi Point Receivers-ppt 23. Bluetooth Notice Board Research Paper 24. Android Based Wireless Notice Board and Printer 25. Wireless E-Notice Board Using Wi-Fi and Bluetooth Technology 26. Wireless Electronic Notice Board using GSM Circuit - Electronics Hub 27. Remotely Controlled Android Based Electronic Notice Board DIY KIT 28. Bluetooth Controlled Electronic Home Appliances - Electronics Hub 29. Real Time Digital Notice Board on Cloud Platform 30. Android Based Remote Controlled Notice Board -Smartkitprojects.com 31. Portable Bluetooth-enabled scrolling LED matrix display 32. Raspberry Pi and LCD TV/Monitor based digital Notice Board 33. Arduino Bluetooth remote lcd display 34. Wireless Notice Board: Project with Circuit Diagram 35. Digital Notice Board 36. Message Displayed on LCD Screen using GSM and Bluetooth 37. Embedded Based Customized Wireless Message Circular System 38. Arduino Based Wireless Notice Board - Send Notice Using Your Cell 39. bluetooth controlled notice board - svsembedded projects 40. Relay and HC-06 Bluetooth based Android Mobile controlled wireless 41. Wireless Digital Notice Board Using GSM Technology 42. wireless notice board full report Electronics / Electrical 43. Design and Implementation of Multiple LED Notice Boards by Using Bluetooth 44. Online Remotely Controlled Android based Electronic Notice Board 45. MAJOR MINOR PROJECTS | BLUETOOTH BASED PROJECTS LIST 46. GSM Based Digital Wireless Notice Board Using PIC16F877A 47. Android Controlled Electronic Notice Board System 48. Smart Electronic Notice Board Using WI-FI 49. Notice Board: Displaying information from mobile/Bluetooth enabled 50. Multi Functional Smart Display Using Raspberry-PI 51. Wireless Electronic Notice Board Using GSM Technology 52. Realtime Live Projects for B.Tech, M.Tech, Diploma, Masters 53. ssay: WIRELESS TECHNOLOGY - WIRELESS NOTICE BOARD

Water Level Detection For Overhead Tank Using Arduino


Water Level Detection For Overhead Tank Using Arduino

https://www.youtube.com/watch?v=ZYfmIx5JsbI

1. Water Level Detection For Overhead Tank Using Arduino.The cost of the project is 3500/-, 2. Arduino Water Level Sensor, Controller + Indicator – ElectroSchematics, 3. WATER LEVEL INDICATOR USING ARDUINO: 3 Steps – Instructables, 4. Automatic Water Level Indicator and Controller using Arduino, 5. Water level controller using arduino. Water level indicator using arduino, 6. Water Level Detection For Overhead Tank Using Arduino – YouTube, 7. water level detection for overhead tank | BITLING PRAKASH | Pulse, 8. Microcontroller Based Automated Water Level Sensing – IAENG, 9. Water Tank level display with Arduino | Open Electronics, 10. How to Make a Water Level Indicator with Arduino | DIY Hacking, 11. How to Make a Water Level Indicator with Arduino | DIY Hacking, 12. https://diyhacking.com/ultrasonic-ard..., 13. AUTOMATIC WATER LEVEL CONTROLLER USING ARDUINO, 14. water level indicator using arduino uno, 15. arduino water level sensor ultrasonic, 16. arduino water tank level sensor, 17. water level indicator using ultrasonic sensor, 18. arduino water sensor code, 19. arduino water level pressure sensor, 20. water level indicator using arduino and ultrasonic sensor, 21. water level controller using arduino pdf, 22. Automatic Water Level Control System - International Journal, 23. Automatic control of a pump system for water level using - IRJET, 24. WATER TANK DEPTH SENSOR USING ARDUINO LABVIEW | Thien, 25. Build a Simple Water Level Controller using Microcontroller – ElProCus, 26. A water-level-controller circuit monitors the level of the overhead tank, 27. Arduino Water level Indicator | Let's Make Robots! | RobotShop, 28. Wireless Water-Level Indicator Without Microcontroller, 29. VERSATILE WATER LEVEL CONTROLLER - Electronics For You, 30. Water Level Controller and Indicator using 8051 Microcontroller, 31. Computational Science and Engineering: Proceedings of the ARDUINO UNO, 32. Intelligent Water Tank Level Indicator | Embedded Systems | svskits, 33. An IOT based Water Supply Monitoring and Controlling System with Raspberry pi, Arduino Nano, Water level sensor, Flow sensor, 34. Motor Controlled On Detection of Water Level By Using Arduino Uno, 35. Arduino Water Level Indicator, water level detection for overhead tank., 36. Automatic Water Management System – IJSRSET, 37. Overhead Water Tank Level (0 to 9) Indicator – svskits, 38. Arduino based Smart Submersible Pump Controller – IJSER, 39. Wireless Water Level Indicator - Project of EEE-2211, 40. Water Level Indicator In A Tank - Low Prices on Popular Products?, 41. Microcontroller based Automatic Water level Control System – IJIRCCE, 42. Automatic water level controller | EngineersGarage, 43. Arduino Based Water level Controller - Voltage drop problem, 44. Tank Water Level Indicator & Controller Using Arduino – IJAREEIE, 45. Arduino based Water level controller - Problem in High voltage, 46. WATER LEVEL CONTROL WITH SPOKEN MESSAGE – IRAJ, 47. arduino uno based automatic plant watering system – IJSRMS, 48. This Water Level Indicator project circuit is designed using AVR to, 49. Watch Arduino Water Level Monitor - How to Tutorial and Guide, 50. Magnetic float sensor for water level controller or indicator - ROBO INDIA, 51. Water level monitoring on ESP12 using Blynk - Hackster.io, 52. Automatic water level controller circuit project, 53. low cost automatic water level control for domestic applications, 54. Automatic water tank level controller motor driver circuit- Engineering, 55. Automatic water level controllers - Bharathi Electronics, 56. WATER FLOAT SWITCH – nskelectronics, 57. Water level indicator Circuit – Gadgetronicx, 58. Water Level Indicator Circuit with Alarm - Electronic Circuits, 59. Simple Water Level Indicator Circuit – FutureElectro, 60. water level indicator using ultrasonic sensor using arduino, 61. This Water Level Indicator project circuit is designed using arduino – Pinterest, 62. Automatic Water Level Controller with Indicator circuit ~ Electronic, 63. Motor controlled on detection of water level by using arduino uno mini, 64. SMS Based Water Level Monitoring System, 65. Water level indicator using ultrasonic sensor using arduino, 66. 270 Mini Electronics Project with Circuit Diagram – ResearchGate, 67. water level detection for overhead tank – YouTube, 68. Arduino Water Level detector – YouTube, 69. Automatic Contactless Water Level Indicator using arduino, 70. Arduino Water Level Monitor – YouTube, 71. Arduino water tank level indicator – YouTube, 72. Arduino Based Wireless Water Level Indicator – YouTube,
SHOW LESS

Human Detection Robot Using PIR Sensor

Human Detection Robot Using PIR Sensor

https://www.youtube.com/watch?v=5RaBUmIv9sc
1. Human Detection Robot using PIR Sensors, 2. Human Detection Robot Circuit using 8051 Microcontroller, 3. human detection robot – SlideShare, 4. Human Detecting Aqua Robot using PIR Sensors, 5. Human Detector Using Pir Sensor | Infrared | Radio Frequency – Scribd, 6. Human detection robot (ROHSAR) (PDF Download Available), 7. Human detection Robot using PIR sensor Electrical project idea, 8. Human Detector - Electronics For You, 9. Live Human Detection Robot – IJIRST, 10. live human detection robot for earthquake rescue operation ppt, 11. human detection robot using Arduino, 12. human detection robot project pdf, 13. human detection robot ppt, 14. human detection robot project report, 15. human detection robot circuit diagram, 16. live human detection robot for earthquake rescue operation project report, 17. human detection robot using arduino pdf, 18. human detection robot using pir sensor, 19. Gsm And Gps Based Live Human Detection With Pir Sensor, 20. human detection using PIR sensor, 21. human detection robot using pir sensor , 22. Human Detection Using Pir Sensor , 23. arduino based human detection robot using PIR sensor wit obstacle, 24. DIY How to make Human Detection Robot using Arduino, 25. Human Tracking Using PIR sensors, 26. Enable Machine Learning with an Advanced Motion Detector Using, 27. Advancements in Radar-Based Motion & Proximity Detection, 28. Wireless Sensor Networks Improve Building Efficiency, Security, 29. Live Human Detection Robot Using PIR Sensor, 30. alive human detector robot for rescue operation, 31. Passive Infrared Sensor (PIR) working with Applications, 32. Alive Human Detection in Disaster Zones using Manually , 33. automatic and manual controlled alive human detection robot, 34. Human detecting and location mapping robot using PIR sensor, 35. An Approach to Design a Simple Human Detecting Robot for Cost, 36. Live Human Detecting Robot for Earthquake Rescue Opeartion, 37. Surveillance Alive Human Detection Robot, 38. ALIVE HUMAN DETECTION ROBOT USING ANDROID PHONE, 39. Alive Human Body Detection and Tracking System Using an, 40. Alive Human Detection Robot - International Journal of Scientific, 41. Human Detection by Robotic Urban Search and Rescue Using Image, 42. Alive Human Detection Robot in Rescue Operation, 43. Obstacle-avoiding robot with IR and PIR motion sensors, 44. Optimized Terrain Robot for Liberating the Human, 45. Microcontroller Based Tracking System for the Detection of Human, 46. HUMAN DETECTION ROBOT CONTROLLED BY PC, 47. Live Human Detecting Robot for Earthquake Rescue Operation, 48. Human Detection Seminar PPT with pdf report, 49. Design of User Friendly Human Alive Detection Robot to Avoid False , 50. Alive Human Detection Robot in Rescue Operation, 51. Obstacle-avoiding robot with IR and PIR motion sensors, 52. Optimized Terrain Robot for Liberating the Human, 53. Microcontroller Based Tracking System for the Detection of Human, 54. HUMAN DETECTION ROBOT CONTROLLED BY PC, 55. Live Human Detecting Robot for Earthquake Rescue Operation, 56. Human Detection Seminar PPT with pdf report, 57. Human Detection Robot Electrical Project Idea | 1000 Projects, 58. mobile phone controlled alive human detector using robotics, 59. Live Human Detecting Robot for Earthquake Rescue, 60. Human Detection using PIR sensor - Robotic Tutorials, 61. Arduino Based Smart Robot Using PIR And Ultrasonic Sensor, 62. pir sensor for human detection circuits diagram, 63. live human detection sensor using pir sensor , 64. Mobile Rescue Robot for Human Body Detection, 65. An Embedded Autonomous Robotic System for Alive Human Body, 66. Detection of Alive Human body in Military Area, 67. Implementation of Tracking System for Human Detection based on , 68. PC Controlled wireless Robot with live human being detection, 69. sensors - What is the cheapest / easiest way of detecting a person, 70. Using Passive Infrared Detection, 71. human tracking system for victims trapped, 72. CAN BASED ACCIDENT AVOIDANCE SYSTEM, 73. CAN BASED COLLISION ACCIDENT AVOIDANCE SYSTEM FOR AUTOMOBILES, 74. CAN BASED INDUSTRIAL MONITORING, SYSTEMKEYPAD,PASSWORD,CONVEYER BELT,CRUSHER MOTOR, 75. CAN BASED PATIENT MONITORING SYSTEM, 76. CAN Based Safety Distance Calculation for Collision Avoidance in Vehicle, 77. CAR SECURITY AND TRACKING SYSTEM BLOCKDIAGRAM EXPLANATION, 78. CAR SECURITY AND TRACKING SYSTEM PART2, 79. CAR SECURITY AND TRACKING SYSTEM using gsm & Gps - PART1, 80. Child Saver Machine & Wireless Monitoring Of Child in Borehole Rescue Operation System, 81. CODE LOCK SECURITY USING MSP430 LANCHPAD, 82. College Bus Information to student through GSM,GPS & IR Sensor’s, 83. Collision Avoidance System Using MSP430G2553,

IoT Enabled Real Time Detection of Underground Cable Faults

Smart Underground Cable Fault Detection Using NodeMCU and IoT | Underground Cable Fault Detection Using Arduino | Fault Detection and Loca...