Thursday 20 August 2020

Remote Control Door Lock/Unlock System Using ESP32 and Telegram | IOT



How to Make Remote Control Door Lock at Home | Automatic Door Lock/Unlock System using ESP32 and Telegram | IoT based Smart Door Lock System using NodeMCU | How to Make Remote Control Door Lock at Home | How to Make Fingerprint Door Lock | Arduino Project | How to Make Fingerprint Door Lock at Home.

1. How to Make Remote Control Door Lock at Home,

2. How to Make Fingerprint Door Lock at Home,

3. How to make Automatic Door Lock at Home || Amazing DIY ideasa,

4. How to Make Automatic Door Lock/Unlock System at Home,

5. Top 5 Best Smart Door Locks To Protect Your Home | Best Electronic Keyless Smartlock,

6. How to Make a Smartphone Connected Door Lock,

7. WiFi Home Door Lock| Blynk | iot project ,

8. Top 7 Best Smart Door Locks 2019 for Your Home | Most Safest Smart Lock,

9. Arduino Project: IOT Car Parking System using Nodemcu esp8266 wifi + Blynk (Tabs + led widgets),

10. IoT Based Biometric Fingerprint Attendance System with NodeMCU ESP8266,

11. how to make wifi door lock,

12. Top 10 IoT Projects for Beginners,

13. IoT Based Smart Door Lock System,

14. IoT based Smart Irrigation System Project using Soil Moisture Sensor and ESP8266 NodeMCU,

15. IoT based Smart Parking System using ESP8266 NodeMCU,

16. IoT Based Digital Notice Board | Esp8266(NodeMcu) with Led Matrix Display,

17. IOT Based Home Automation Using Smart Phone | ESP8266 (NodeMcu) with Blynk,

18. WIFI Based Door Open / Close System Using Arduino,Android App,

19. Arduino Projects, IoT projects, ESP8266 projects, ESP32 projects, Diy projects, project ideas,

20. IOT Based Smart Car Parking System Using NodeMCU,

21. Portable IoT based fingerprint biometric attendance system using NodeMCU,

22. IOT based Home Automation using NodeMCU with Smartphone, blynk app in Bangla Tutorial,

23. WiFi Door Lock using ESP32 CAM & Blynk - IoT Projects for Smart House,

24. IoT Door Sensor Reed Switch based Security System using Nodemcu ESP8266 “Garage Door”,

25. IOT Based Door Lock-Unlock by NodeMCU | WiFi Home Door Lock | ESP8266 | iot project | Arduino,

26. ESP8266 RFID based Remote Access Door Lock, RFID and IoT, RFID IoT, smart lock,

27. SMART LOCK || RFID + IOT+MANUAL LOCK,

28. IOT Smart Dustbin Using NodeMCU and ESP8266,

29. WiFi Controlled Robot Car Using NodeMCU | V380 Live Camera Monitoring System,

30. How To Make A Simple WiFi Controlled Robot Car (NodeMCU) | Wifi RC Car ESP8266 App - NodeMCU(ESP12E),

31. Smart Blind Stick Project using Arduino and Sensors,

32. Tiny Wifi Camera makes a pretty good DIY doorbell,

33. ESP32 CAM Face Detection Door Lock System,

34. Smart Door Bell using ESP32 Cam/ESP-EYE & Blynk,

35. ESP32-CAM Face Recognition for Access Control,

36. How to program ESP32 CAM using Arduino UNO,

37. How to Make Android Fingerprint Door Lock | Arduino/ESP32 Project,

38. ESP32 CAM Contact Less Door Bell Security System | Blynk,

39. Unlock a Door With Face Recognition Using ESP32 Camera,

40. WiFi Door Lock using ESP32 CAM & Blynk - IoT Projects for Smart House,

41. ESP32-CAM Motion Sensor Security Camera with Notification using Blynk - DIY Home surveillance system,

42. ESP32 Fingerprint Sensor Based Biometric Door Lock Security System,

43. ESP32 CAM Face Recognition Door Lock System,

44. ESP32 CAM Based Video Surveillance Robot Over WiFi | Ai-Thinker ESP32-CAM Arduino IDE,

Wednesday 19 August 2020

Temperature and Humidity Controller for Infant Incubator

 Watch Video Demonstration Carefully Till End -- Temperature and Humidity Controller For Incubator


PLEASE SUBSCRIBE FOR MORE PROJECT VIDEOS --► HTTP://BIT.LY/29VPRS9

Project Abstract and Block Diagram Link --► http://svsembedded.com/Temperature_and_Humidity_Controller_For_Incubator.php

Hardware components list:

1.      ARDUINO UNO R3---- https://amzn.to/32uockl

2.      9V 1A DC Power supply---https://amzn.to/2QwQmpn

3.      Lcd  16x2  Display----- https://amzn.to/2YEHSB7

4.      Single Channel 5v Relay-- https://amzn.to/3gCgSIm

5.      Cooling Fan 5/12VDC----https://amzn.to/3jkNfwW

6.      DHT11 Temperature and Humidity Sensor--- https://amzn.to/2EvSxah

7.      SG 90 Micro Servo Motor--- https://amzn.to/3b35pAy

8.      2 Pin Tactile Switch micro--https://amzn.to/3b5m5Yi


SCHEMATIC DIAGRAM:

FINAL SOFTWARE CODE:

#include <LiquidCrystal.h>
#include <Servo.h>
#include <dht11.h>
dht11 DHT;
#define DHT11_PIN 4

const int ok = A1;
const int UP = A2;
const int DOWN = A3;

const int bulb = 3;
const int vap = 6;

const int rs = 8;
const int en = 9;
const int d4 = 10;
const int d5 = 11;
const int d6 = 12;
const int d7 = 13;

int ack = 0;
int pos = 0;
int sec = 0;
int Min = 0;
int hrs = 0;
int T_threshold = 30;
int H_threshold = 60;
int SET = 0;
int Direction = 0;
boolean T_condition = true;
boolean H_condition = true;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
Servo motor;
void setup()
{
pinMode(ok, INPUT);
pinMode(UP, INPUT);
pinMode(DOWN, INPUT);
pinMode(bulb, OUTPUT);
pinMode(vap, OUTPUT);
digitalWrite(bulb, LOW);
digitalWrite(vap, LOW);
digitalWrite(ok, HIGH);
digitalWrite(UP, HIGH);
digitalWrite(DOWN, HIGH);
motor.attach(A4);
motor.write(pos);
lcd.begin(16, 2);
Serial.begin(9600);

lcd.clear();
lcd.setCursor(0,0);
lcd.print("Temperature &");
lcd.setCursor(0,1);
lcd.print("Humidity ");
delay (3000);
lcd.clear();
lcd.setCursor(0,0);
lcd.print("Controller For");
lcd.setCursor(0,1);
lcd.print("Incubator");
delay (3000);
lcd.clear();
Serial.println("  Temperature and Humidity Controller For Incubator");
}
void loop()
{
  
if (SET == 0)
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Set Temperature:");
lcd.setCursor(0, 1);
lcd.print(T_threshold);
lcd.print(" *C");
while (T_condition)
{
if (digitalRead(UP) == LOW)
{
T_threshold = T_threshold + 1;
lcd.setCursor(0, 1);
lcd.print(T_threshold);
lcd.print(" *C");
delay(200);
}
if (digitalRead(DOWN) == LOW)
{
T_threshold = T_threshold - 1;
lcd.setCursor(0, 1);
lcd.print(T_threshold);
lcd.print(" *C");
delay(200);
}
if (digitalRead(ok) == LOW)
{
delay(200);
T_condition = false;
}
}
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Set Humidity:");
lcd.setCursor(0, 1);
lcd.print(H_threshold);
lcd.print("%");
delay(100);
while (H_condition)
{
if (digitalRead(UP) == LOW)
{
H_threshold = H_threshold + 1;
lcd.setCursor(0, 1);
lcd.print(H_threshold);
lcd.print("%");
delay(100);
}
if (digitalRead(DOWN) == LOW)
{
H_threshold = H_threshold - 1;
lcd.setCursor(0, 1);
lcd.print(H_threshold);
lcd.print("%");
delay(200);
}
if (digitalRead(ok) == LOW)
{
delay(100);
H_condition = false;
}
}
SET = 1;
}
ack = 0;
int chk; 
chk = DHT.read(DHT11_PIN);    // READ DATA
switch (chk)
{
case DHTLIB_OK:  
//Serial.print("OK,\t"); 
break;
case DHTLIB_ERROR_CHECKSUM: 
//Serial.print("Checksum error,\t"); 
ack = 0;
break;
case DHTLIB_ERROR_TIMEOUT: 
//Serial.print("Time out error,\t"); 
ack = 0;
break;
default: 
//Serial.print("Unknown error,\t"); 
break;
}
// DISPLAT DATA
Serial.print("DHT11, \t");
Serial.print(DHT.temperature,1);
Serial.print(",\t");
Serial.println(DHT.humidity,1);
delay(100);

if (ack == 0)
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("Temp:");
lcd.print(DHT.temperature);
lcd.setCursor(0, 1);
lcd.print("Humidity:");
lcd.print(DHT.humidity);
delay(500);
if (DHT.temperature >= T_threshold)
{
delay(500);
if (DHT.temperature >= T_threshold)
{
digitalWrite(bulb, LOW);
}
}
if (DHT.humidity >= H_threshold)
{
delay(500);
if (DHT.humidity >= H_threshold)
{
digitalWrite(vap, HIGH);
}
}
if (DHT.temperature < T_threshold)
{
delay(500);
if (DHT.temperature < T_threshold)
{
digitalWrite(bulb, HIGH);
}
}
if (DHT.humidity < H_threshold)
{
delay(500);
if (DHT.humidity < H_threshold)
{
digitalWrite(vap, LOW);
}
}
sec = sec + 1;
if (sec == 3)
{
sec = 0;
Min = Min + 1;
}
if (Min == 3)
{
Min = 0;
hrs = hrs + 1;
}
if (hrs == 3 && Min == 0 && sec == 0)
{Serial.println("  ROTATING FORWARD  ");
for (pos = 0; pos <= 180; pos += 1)
{
motor.write(pos);
delay(25);
}
}
if (hrs == 6 && Min == 0 && sec == 0)
{Serial.println("  ROTATING BACKWARD  ");
hrs = 0;
for (pos = 180; pos >= 0; pos -= 1)
{
motor.write(pos);
delay(25);
}
}
}
if (ack == 1)
{
lcd.clear();
lcd.setCursor(0, 0);
lcd.print("No Sensor data.");
lcd.setCursor(0, 1);
lcd.print("System Halted.");
digitalWrite(bulb, LOW);
digitalWrite(vap, LOW);
}
delay(500);
}

================================================================
PROJECT KIT HELP AND EXECUTION PROCESS
SVSEMBEDDED - 9491535690 / 7842358459
Project help & learning - Online Support
·         You can build this project at home. With step by step process Explain on video call and remote desktop command line console
·         Team Viewer: The Remote Desktop Software
·         Any Desk: The Fast Remote Desktop Application Software.
·         We will charge the Money depends on the project worth.
·         We will write the code on your Computer with Remote Desktop connection and Compile the code in your computer only Dumping the code to u r computer
·         Online embedded project kit support.
·         Indian timings 10:00am to 6:00pm. (WhatsApp / Google Duo video and voice calls)
·         You can build this project support in case of any doubts- online YouTube tutorials.
·         We can develop the Project with your own ideas also.
·         We will sell full project kit also(Send me mail to svsembedded@gmail.com)
·         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/




Monday 17 August 2020

Smart Attendance System - QR Code Student Attendance with SMS



























Smart Attendance System - QR Code Student Attendance
with SMS | Smart Attendance System - QR Code Student Attendance Sheet in Excel.
1.       How
to use Five Ultrasonic sensors with Arduino To Excel Communication,
2.       Real
- Time Garbage Monitoring and Sensor's Data Logging to Excel Using Arduino,
3.       Temperature
& Humidity Sensor Data Logging to Excel Using Arduino - GSM - SMS Alert,
4.       Sending
Temperature Sensor Data From Arduino to Excel and Plotting,
5.       Attendance
System Using QR Code Scan,
6.       Automated
attendance using Google Forms,
7.       Student
attendance using QR code card,
8.       QR
Attendance Using Google Drive with QR Codes Generator Add-ons,
9.       Mobile
Attendance Tracking with QR Codes,
10.    QR
CODE ATTENDANCE TAKING WITH GOOGLE FORMS | Geek Out,
11.    Create
QR Scan Attendance APP using APP Inventor | Google AppScript | Google Sheets,
12.    How
to take attendance with QR codes and Google Docs,
13.    How
to Take Attendance with a QR Code,
14.    Mobile
Attendance: How to create employee ID cards with QR codes,
15.    Employee
Attendance System using QR Code in Java | Final Year Project,
16.    Attendance
System Using QR Code Scan,
17.    Employee
Attendace Management System with QR Code in Python,
18.    QR
Codes Attendance System,
19.    HOW
TO SET YOUR QR CODE ATTENDANCE FOR STUDENTS,
20.    Attendance
Marking using QR Code,
21.    Taking
Attendance with a QR code,
22.    How
to Take Attendance with a QR Code,
23.    Student
Attendance Monitoring System with SMS,
24.    RFID
Attendance System with SMS Notification,
25.    RFID
Attendance Solution For Students,
26.    How
to make RFID based students Attendance system with sms Alert “Arduino,GSM Sim900A,MFRC522,
VB,
27.    Educational
Notifier - SMS Based Attendance System for Schools,
28.    Super
School [ Advance School Management System] with RFID and SMS Integration,
29.    Student
& Staff Attendance Management System,
30.    Biometric
& RFID Card Attendance System with Automatic SMS Alerts,
31.    RFID
Based Attendance system with GSM notification System using PIC Microcontroller,
32.    Accident
Avoiding System with Crash Detection and GPS Notification,
33.    IOT
- Smart Attendance System,
34.    RFID
Based Attendance and Monitoring System with SMS Notification,
35.    SkoolTree
- Best Attendance SMS System for Schools,
36.    RFID
Based Gate Attendance System With Sms Notification,
37.    Arduino
Firebase Tutorial, Students Attendance System using GSM and RFID with Parents
SMS Alert,
38.    Student
Account Payment Monitoring System with SMS Notification using Broadband Stick,
39.    RFID
based student attendance system with parents notification by SMS,
40.    RFID
- based Student pass Monitoring System with SMS Notification made in VB6.0
DBASE:MS ACCESS,
41.    RFID
Attendance System with SMS and android notification,
42.    RFID
BASED GATE ATTENDANCE SYSTEM WITH SMS,
43.    Student/Staff
Automatic Attendace with SMS Alerts to Parents,
44.    Attendance
monitoring with rfid & sms notification,
45.    RFID
Attendance System with SMS Notification Using Arduino,
46.    RFID
and GSM Based Attendance System Using Arduino and DS3231 RTC Module,
47.    Students
RFID Base Attendance Monitoring System with SMS and Email Notification to
Parents/Guardians,
48.    Student
automatic attendance system with SMS integrated AmpleTrails,
49.    RFID
Based Attendance System & Message Alert System to Parents,
50.    Church
Membership And Management System With RFID Based Event Attendance And SMS
Notification,
51.    Rfid
Attendance System With Sms Notification,
52.    Smart
Attendance System | RFID based Attendance System ,
53.    Why
RFID Walk Through Attendance Gate For Schools,
54.    Automated
attendance using Google Forms,
55.    Student
attendance using QR code card,
56.    QR
Attendance Using Google Drive with QR Codes Generator Add-ons,
57.    How
to Maintain Attendance Sheet in MS excel in Hindi | How to Make Attendance
Sheet In Excel,
58.    How
to Make Attendance Salary Sheet in Excel | Excel Practice Tutorials in Telugu
|LEARN COMPUTER,
59.    7
Tips to Make Attendance Sheet in Excel in Hindi,
60.    Attendance
Sheet - How to create in Excel,
61.    Smart
Attendance System - RFID student attendance with SMS,
62.    RFID-RC522
with Excel using Arduino (As a attendance system),
63.    RFID
Attendance System with SMS Notification,
64.    How
to Make Duplicate Fingerprint || Unlock any Fingerprint Sensor 2018,
65.    MDI
Fingerprint Time attendance Training / Installation Guide,
66.    How
to Install Fingerprint Attendance Management System Full Video,
67.    Student
Attendance with Fingerprint Reader,
68.    smart
attendance system using iot,
69.    smart
attendance system using face recognition,
70.    smart
attendance system project,
71.    smart
attendance system ppt,
72.    rfid
school attendance system price,
73.    smart
attendance system using rfid,
74.    smart
attendance system for school,
75.    rfid
based attendance system using arduino,
76.    smart
attendance system using iot pdf,
77.    iot
based attendance system using arduino,
78.    biometric
attendance system using iot,
79.    smart
attendance system project,
80.    iot
based biometric attendance system using arduino,
81.    iot
based attendance system project,
82.    iot
based rfid attendance system,
83.    iot
based biometric attendance system using raspberry pi,
84.    smart
attendance system using iot pdf
85.    smart
attendance system using rfid
86.    automatic
attendance system using iot
87.    iot
based rfid attendance system
88.    smart
attendance system project,
89.    iot
based attendance system using Arduino,