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,

Tuesday 11 August 2020

Smart Agriculture - Rain Moisture sensor for IoT and Telegram Alert Us...



Smart Agriculture - Rain + Moisture sensor for IoT and Telegram Alert Using ESP32 | Agriculture IoT System | Internet of Things (IoT) - SMART AGRICULTURE | IoT Enabled Smart Farming.

Smart Agriculture Using IOT
https://www.youtube.com/watch?v=Rr3KZ...

Agriculture Projects: AUTOMATIC IRRIGATION WATER SUPPLY MONITORING AND CONTROL SYSTEM
https://www.youtube.com/watch?v=zAM62...

Smart Farming: Wifi Based Agriculture Sensors (Temperature, Humidity and moisture) Android App
https://www.youtube.com/watch?v=tKxSe...

Smart Farming using IOT
https://www.youtube.com/watch?v=ipWDe...

Iot Based Smart Farming in Smart Agriculture Monitoring System
https://www.youtube.com/watch?v=Hr9Kk...

Iot Based Smart Agriculture Monitoring System | agriculture crop monitoring system
https://www.youtube.com/watch?v=AtrFR...

IOT Based Smart E Agriculture Monitoring on Webpage Motor Controling with Android App
https://www.youtube.com/watch?v=UvifS...

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

IoT based Precision Agriculture
https://www.youtube.com/watch?v=83JP6...

Smart E Agriculture Monitoring Web App
https://www.youtube.com/watch?v=Be8wx...

Smart E-Agriculture Monitoring Using Internet Of Things
https://www.youtube.com/watch?v=6i5Nm...

Real Time Agriculture/Paddy Crop Field Monitoring System using ARM
https://www.youtube.com/watch?v=k8s3r...

Automatic Intelligent Plant Watering System Using Arduino
https://www.youtube.com/watch?v=GiPqv...

wifi based agricultural sensor monitoring system
https://www.youtube.com/watch?v=YhCr3...

Agriculture: Automated Irrigation System for Agricultural Crop Field Monitoring Based ARM7 and GSM
https://www.youtube.com/watch?v=5zkdP...

PolyHouse Farming monitor using ARM7, ZIGBEE, GSM and LabVIEW
https://www.youtube.com/watch?v=GvLa7...

E - Agriculture Monitoring System With Android App & SMS Alert
https://www.youtube.com/watch?v=CJt0R...

Smart Drip Irrigation System using ARM7 LPC2148
https://www.youtube.com/watch?v=tPq9o...

Smart Crop Protection From Wild Animals With Alert Using Arduino | Field Sensor Monitoring with WiFi
https://www.youtube.com/watch?v=8TQGS...

Wi-Fi project :Agriculture Environment Monitoring system using Android | WiFi ESP8266 Module
https://www.youtube.com/watch?v=i-l56...

IoT Based Water Level Monitoring System
https://www.youtube.com/watch?v=jTEWO...

1. IoT based Smart Agriculture using Telegram Alert,

2. IoT based Smart Agriculture using Thingspeak,

3. Iot Based Smart Agriculture System Using ThingSpeak,

4. Moisture sensor for IoT and Telegram Alert,

5. The IoT Marketplace - Arduino Project ,

6. Garden Monitoring and Maintenance Using IOT – Ijircce,

7. IOT Based Agriculture System Using Google Assistant ,

8. Smart Farming: The Future of Agriculture - IoT For All,

9. iot based smart agriculture monitoring system,

10. smart irrigation system using iot,

11. smart agriculture using iot - ieee papers,

12. arduino based smart irrigation system using iot ppt,

13. block diagram of smart irrigation system using iot,

14. iot based smart irrigation system using raspberry pi,

15. iot based smart agriculture monitoring system using Arduino,

16. smart irrigation system using nodemcu ppt,

Sunday 9 August 2020

QR Code Based Smart Rationing System Using ESP32-CAM and GSM - Ration Su...



QR Code Based Smart Rationing System Using ESP32-CAM and GSM - Ration Subsidy and SMS Alert


1. Automation in Rationing System Using QR code,


2. QR Authenticated Smart Ration Distribution System,


3. QR Codes In Ration Management: Make The System,


4. qr code based ration system,


5. e-ration distribution system based on qr code,


6. Real Time Monitoring and Logging of Ration System with QR,


7. E-Ration Distribution System Based on QR- Code,


8. Public Food Distribution System Using QR Code,


9. Smart Rationing System By Using GSM And QR-code,


10. Smart Ration Card System Using QR Code and One Time,


11. E-Ration Distribution System based on QR-Code,


12. Smart Rationing System By Using ESP32-CAM And QR-code,


13. ESP32 SIM800L: Send Text Messages (SMS Alert) with,


14. E-Ration Distribution System by Sending QR- Code,


15. RFID and GSM based Automatic Rationing System using LPC2148,


16. Smart home automation | Security system using Esp32 Cam | Smart Security camera Telegram & Line app,


17. Gas Alert System with IoT and Telegram App Using ESP32,


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


19. Aadhar Card Enabled Automatic Ration Distribution using RFID,GSM AND FINGERPRINT,


20. Automatic Ration Material Distributions Based on GSM and RFID,


21. qr code and GSM based Automatic Rationing System using LPC2148,


22. Fingerprint Based Exam Hall Authentication,


23. SMART RATION CARD SYSTEM USING LOAD CELL,PUMP,RFID,GSM,


24. RFID GSM BASED AUTOMATIC RATIONING SYSTEM,


25. Automation in Rationing System Using ARM7 LPC2148,


26. A Smart E-Ration System using QR Code to Prevent Corruption,


27. automatic ration material distribution using GSM and RFID Technology,


28. Smart Ration Delivery system with RFID and GSM,


29. Smart Ration Distribution System by using RFID and GSM Technology,


30. BMP180 Pressure/Temperature/Altitude Sensor with 2.4" TFT LCD and Arduino,


31. IOT Device For Fire Alarm System using ESP32 || Telegram App Notification Alert || Google Maps Link,


32. BMP180 Barometric Pressure/Temperature/Altitude Sensor Module – Arduino + LCD,


33. Top 10 Best ESP32 project ideas | IoT (Internet of Things) Projects of All Time | 2020,


34. Smart Shopping Using QR Code and ESP32-CAM | IOT,


35. QR Code Based Bus Name Announcement System in Bus Stops | ESP32CAM QR Code Recognition,


36. ESP32 Capacitive Touch Switch Board for Home Automation,


37. Alcohol Detection System with Engine Locking using ESP32 and Telegram App | IoT,


38. Control ESP32 Mobile Robot Using Android Telegram App | IOT,


39. Track a Vehicle Using Telegram App and Live Location on Google Maps With ESP32,


40. ESP32 GPS Tracker With an LCD Display,


41. Telegram App Controlled Home Automation Using ESP32 | IOT,


42. ESP32-CAM PIR Intruder Alert with Photo Capture and Send Image to Telegram App,


43. Gas Alert System with IoT and Telegram App Using ESP32,


44. IOT Based Distance Measuring System Using ESP32,


45. QR Code Based Door Lock System using ESP32-CAM,


46. RFID Based Automated Smart Shopping Trolley Using Raspberry Pi,


47. ESP32CAM QR Code Reader | ESP32-CAM-QR Code Scanner,


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


49. ESP32-CAM Video Streaming Camera Over WiFi | Security Camera System for Home - IP (ESP32 - OV2640),


50. Arduino RGB LED Control using Bluetooth Android App,


51. BarCode Scanner Interfacing with Arduino + USB Host Shield Module + 16x2 LCD Display,


52. Arduino Joystick Control Car | Wireless Joystick Controlled Robot Car using 433Mhz RF and Arduino,


53. Efficient Accident Vehicle Detection and Notification System Based on Raspberry Pi 3,


54. ESP32 Home Automation Using in Built Bluetooth |Control Home Appliance Using ESP32 BLE + Android App,


55. NodeMCU | ESP8266 | Arduino | IoT Based Railway Track Crack and Obstacle Detection Robot - GSM - GPS,


56. ARM LPC2148 Based Smart City & IOT based Garbage Management System,


57. Remote Patient Monitoring: Wearable Healthcare Devices Through IoT with Remote Patients,


58. WiFi Based DC Motor Speed and Direction Control using NodeMCU,


59. 14 Days With a Quarantine Tracker Wristband - Home Quarantine Location Tracking fixed Wristband,


60. IVRS Based Home Automation with Immediate Voice & SMS Feedback Using Arduino TTS - GSM SIM800L DTMF,