SlideShare ist ein Scribd-Unternehmen logo
1 von 28
Presentation on
IOT
Internet of Things
What is IOT?
Internet Of Things-
It is network that connect all the devices with each Other . “It is
the network of physical devices, vehicles, home appliances and electronics items like
software, sensors, motors. Which enable these objects to connect and exchange data
with other.”
Smart Phone, Smart Watches, Laptop Or any other device which is connected with Internet comes
under the category of IOT .
In Electronics we Learn how to connect Various sensors, motors etc. with a Internet, So that they can be
accessible from anywhere in the World.
2
Applications!
Smart Homes.
Smart City.
Self-driven Cars.
Farming.
Wearables Devices.
Easy maintenance .
3
Future scope
As India is a developing country, it has a wide IoT
scope, the demand for an IoT Developer has
jumped over 300 percent.
Fields -
Agriculture.
Traffic monitoring.
Automation.
Health Tracking.
4
“If you think that the internet
has changed your life, think
again . IOT is about to change
it all over again!
5
Microcontrollers
It is an Electronic device, that is responsible for all
the processing and calculation Part .
Basically it is same as your Brain Just like brain
things that I have to buy chocolate if Mom gives
me the Money , here money is working as a input
and our brain is a processor and chocolate is the
output .
6
How to implement
IOT
╸ For the implementation of IOT we must a
procssor or brain that has the ability to work
with internet or wifi.
╸ So we Have NODE MCU Board, that has inbuilt
WIFI and Bluetooth connectivity.
Various models of NODEMCU are Available in
Maket like ESP32, ESP8266 etc.
7
ESP 32
It is a Dual Core Processor.
It has wifi and bluetooth.
It has a ROM of 448 kb.
In-built temp. sensor
included.
Expensive than 8266.
Comparison
of ESP32 and 8266
ESP 8266
It is a Single Core Processor.
It has only wifi .
It has a ROM of 80 kb.
No In-built temp. sensor is
there.
Cheaper than 8266.
8
What is ESP8266?
It is a low-cost Wi-Fi microcontroller.
It supports Wi-Fi Connectivity, that
means we can monitor or control
anything with our mobile phone from
anywhere in the world.
Example- Suppose That you connect a led with
that and now the led is in home and you are in
school, you can turn in on and off from school by
just using the phone.
9
Pins diagram
ESP8266
10
╸ It has 17 GPIO pins
╸ 1 Analog input Pin
╸ It has 3.3v Output pin
╸ And various communications
protocol pins like I2C , UART
etc.
What is DHT 11?
It is a low-cost Temperature and Humidity
Sensor, that comes with a dedicated NTC to
measure temperature and an 8-bit
microcontroller to output the values of
temperature and humidity as serial data.
11
Pins diagram
DHT11
12
╸ VCC And GND pin connects
to the power supply of 3.3v
to 5v
╸ Output pin is Data [2]pin,
that Outputs both
Temperature and Humidity
through serial Data
It is 3 pin Sensor
What is MQ-2?
It is a low-cost Smoke Sensor, used for the
detection of gas leakage (home and
industry). It is suitable for detecting H2, LPG,
Alcohol, Smoke etc.
13
Pins diagram
MQ-02
14
╸ VCC And GND pin connects
to the power supply of 5v
╸ Output pin is are 2 one is
Analog and other one is
Digital Output.
It is 4 pin Sensor
What is Arduino IDE?
It is a Open Source Software that
means anyone can use it free.
Just like when we need anything from
father we go to mother and tell ask dad
for that . Here Mother works as a
medium between you and your dad.
It provide us the medium to
communicate with microcontroller .
15
How to add ESP 8266 ?
Step-1:
In your Arduino IDE,
Go to File> Preferences
16
How to add ESP 8266 ?
Step-2:
Enter
http://arduino.esp8266.com/stable/pac
kage_esp8266com_index.json into the
“Additional Boards Manager URLs”,
then press ok.
17
How to add ESP 8266 ?
Step-3:
Open the Boards Manager.
Go to Tools > Board > Boards
Manager…
18
How to add ESP 8266 ?
Step-4:
Search for ESP8266 and press install
button for the
“ESP8266 by ESP8266 Community“:
19
How to add ESP 8266 ?
Step-5:
That’s it.
It should be installed after a few
seconds.
20
How to Interface?
╸ For the interfacing we must have DHT11, Mq-2,
jumper wires, Esp 8266 and laptop for coding.
21
How to connect DHT 11 ?
First Connect Vcc of sensor to 3.3v of Esp
board and ground to Gnd pin.
Then connect data Pin of Dht 11 to D0 pin of
Esp board
22
How to connect MQ-02 ?
First Connect Vcc of sensor to 3.3v of Esp
board and ground to Gnd pin.
Then connect the A0 Pin of MQ-02 to A0 pin
of Esp board
23
Programming
╸ For the measurement of temp. we need to
install dht11 library from library manager .
╸ And for the measurement of smoke we just
need to use if else statement.
24
Programming
For Temperature we have to use function float t = dht.readTemperature();
For Humidity the function is float h = dht.readHumidity();
And for smoke detection-
25
Code
#include "DHT.h"
#define DHTPIN D0
#define DHTTYPE DHT11
DHT dht(DHTPIN, DHTTYPE);
void setup() {
Serial.begin(9600);
Serial.println( “test!”);
dht.begin();
}
void loop() {
float h = dht.readHumidity();
float t = dht.readTemperature(); 26
int analogSensor = analogRead(A0);
if (analogSensor > 400) {
Serial.println( “SMOKE DETECTED!!”);
}
else {
Serial.println( “SMOKE NOT
DETECTED”);
}
Serial.print(F(" Humidity: "));
Serial.print(h);
Serial.print(F("% Temperature: "));
Serial.print(t);
delay(100);
}
OUTPUT
╸ When it detect smoke the serial monitor will
show smoke detected and if there is no smoke
then it show smoke not detected
╸ After that serial monitor will show the Temp. and
Humidity level
27
Thanks!
28

Weitere ähnliche Inhalte

Ähnlich wie presentation on IOT.pptx

jeevan ppt anits ecec.pptx
jeevan ppt anits ecec.pptxjeevan ppt anits ecec.pptx
jeevan ppt anits ecec.pptxNickKumar17
 
Heart beat monitoring system using arduino with iot
Heart beat monitoring system using arduino with iotHeart beat monitoring system using arduino with iot
Heart beat monitoring system using arduino with iotAravind mass
 
Practical Introduction to Internet of Things (IoT)
Practical Introduction to Internet of Things (IoT)Practical Introduction to Internet of Things (IoT)
Practical Introduction to Internet of Things (IoT)Suraj Kumar Jana
 
Bluetooth Home Automation System
Bluetooth Home Automation SystemBluetooth Home Automation System
Bluetooth Home Automation SystemAI Publications
 
IoT Based Home Automation System Presantation
IoT Based Home Automation System PresantationIoT Based Home Automation System Presantation
IoT Based Home Automation System PresantationFarhan Ahmed Rahee
 
Digital home automation with arduino bluetooth
Digital home automation with arduino bluetoothDigital home automation with arduino bluetooth
Digital home automation with arduino bluetoothShishupal03012015
 
iot1presentation-191219142803.pdf
iot1presentation-191219142803.pdfiot1presentation-191219142803.pdf
iot1presentation-191219142803.pdfBharathReddy615859
 
IoT based home automation
IoT based home automationIoT based home automation
IoT based home automationEyaminulHoq
 
IRJET- IoT based System for Smart and Secured Home
IRJET- IoT based System for Smart and Secured HomeIRJET- IoT based System for Smart and Secured Home
IRJET- IoT based System for Smart and Secured HomeIRJET Journal
 
Smart Home automation system using Android Application by Mohammad Aiyoob
Smart Home automation system using Android Application by Mohammad Aiyoob Smart Home automation system using Android Application by Mohammad Aiyoob
Smart Home automation system using Android Application by Mohammad Aiyoob Mohammad Aiyoob Rahmani
 
Interoperability in Internet of Things (IOT)
Interoperability in Internet of Things (IOT)Interoperability in Internet of Things (IOT)
Interoperability in Internet of Things (IOT)manditalaskar123
 
An IOT Project Integrated with RFID and GPRS
An IOT Project Integrated with RFID and GPRSAn IOT Project Integrated with RFID and GPRS
An IOT Project Integrated with RFID and GPRSIJMTST Journal
 
Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266INFOGAIN PUBLICATION
 
IRJET- Wi-Fi Control First Person View Robot (FPV)
IRJET- Wi-Fi Control First Person View Robot (FPV)IRJET- Wi-Fi Control First Person View Robot (FPV)
IRJET- Wi-Fi Control First Person View Robot (FPV)IRJET Journal
 
Design and implementation home security system and monitoring by using wirele...
Design and implementation home security system and monitoring by using wirele...Design and implementation home security system and monitoring by using wirele...
Design and implementation home security system and monitoring by using wirele...IJECEIAES
 
Google Voice Assistance Based Smart Home Automation
Google Voice Assistance Based Smart Home AutomationGoogle Voice Assistance Based Smart Home Automation
Google Voice Assistance Based Smart Home AutomationGauthamG4
 

Ähnlich wie presentation on IOT.pptx (20)

jeevan ppt anits ecec.pptx
jeevan ppt anits ecec.pptxjeevan ppt anits ecec.pptx
jeevan ppt anits ecec.pptx
 
NodeMCU || Controlling and observing a robotic car with a smartphone through...
NodeMCU || Controlling and observing a robotic car with a  smartphone through...NodeMCU || Controlling and observing a robotic car with a  smartphone through...
NodeMCU || Controlling and observing a robotic car with a smartphone through...
 
IoT Intro and Demo
IoT Intro and DemoIoT Intro and Demo
IoT Intro and Demo
 
Heart beat monitoring system using arduino with iot
Heart beat monitoring system using arduino with iotHeart beat monitoring system using arduino with iot
Heart beat monitoring system using arduino with iot
 
Practical Introduction to Internet of Things (IoT)
Practical Introduction to Internet of Things (IoT)Practical Introduction to Internet of Things (IoT)
Practical Introduction to Internet of Things (IoT)
 
Bluetooth Home Automation System
Bluetooth Home Automation SystemBluetooth Home Automation System
Bluetooth Home Automation System
 
IoT Based Home Automation System Presantation
IoT Based Home Automation System PresantationIoT Based Home Automation System Presantation
IoT Based Home Automation System Presantation
 
Digital home automation with arduino bluetooth
Digital home automation with arduino bluetoothDigital home automation with arduino bluetooth
Digital home automation with arduino bluetooth
 
iot1presentation-191219142803.pdf
iot1presentation-191219142803.pdfiot1presentation-191219142803.pdf
iot1presentation-191219142803.pdf
 
IoT based home automation
IoT based home automationIoT based home automation
IoT based home automation
 
IRJET- IoT based System for Smart and Secured Home
IRJET- IoT based System for Smart and Secured HomeIRJET- IoT based System for Smart and Secured Home
IRJET- IoT based System for Smart and Secured Home
 
Presentation on INTERNET OF THINGS
Presentation on INTERNET OF THINGSPresentation on INTERNET OF THINGS
Presentation on INTERNET OF THINGS
 
Smart Home automation system using Android Application by Mohammad Aiyoob
Smart Home automation system using Android Application by Mohammad Aiyoob Smart Home automation system using Android Application by Mohammad Aiyoob
Smart Home automation system using Android Application by Mohammad Aiyoob
 
Interoperability in Internet of Things (IOT)
Interoperability in Internet of Things (IOT)Interoperability in Internet of Things (IOT)
Interoperability in Internet of Things (IOT)
 
An IOT Project Integrated with RFID and GPRS
An IOT Project Integrated with RFID and GPRSAn IOT Project Integrated with RFID and GPRS
An IOT Project Integrated with RFID and GPRS
 
Espressif Introduction
Espressif IntroductionEspressif Introduction
Espressif Introduction
 
Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266Home Automation Using Arduino and ESP8266
Home Automation Using Arduino and ESP8266
 
IRJET- Wi-Fi Control First Person View Robot (FPV)
IRJET- Wi-Fi Control First Person View Robot (FPV)IRJET- Wi-Fi Control First Person View Robot (FPV)
IRJET- Wi-Fi Control First Person View Robot (FPV)
 
Design and implementation home security system and monitoring by using wirele...
Design and implementation home security system and monitoring by using wirele...Design and implementation home security system and monitoring by using wirele...
Design and implementation home security system and monitoring by using wirele...
 
Google Voice Assistance Based Smart Home Automation
Google Voice Assistance Based Smart Home AutomationGoogle Voice Assistance Based Smart Home Automation
Google Voice Assistance Based Smart Home Automation
 

Kürzlich hochgeladen

Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Sheetaleventcompany
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersDamian Radcliffe
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663Call Girls Mumbai
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxellan12
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Servicegwenoracqe6
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Servicesexy call girls service in goa
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024APNIC
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Standkumarajju5765
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceDelhi Call girls
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445ruhi
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Delhi Call girls
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Call Girls in Nagpur High Profile
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...tanu pandey
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girlsstephieert
 
SEO Growth Program-Digital optimization Specialist
SEO Growth Program-Digital optimization SpecialistSEO Growth Program-Digital optimization Specialist
SEO Growth Program-Digital optimization SpecialistKHM Anwar
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.soniya singh
 

Kürzlich hochgeladen (20)

Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
Dwarka Sector 26 Call Girls | Delhi | 9999965857 🫦 Vanshika Verma More Our Se...
 
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
Call Girls Service Chandigarh Lucky ❤️ 7710465962 Independent Call Girls In C...
 
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providersMoving Beyond Twitter/X and Facebook - Social Media for local news providers
Moving Beyond Twitter/X and Facebook - Social Media for local news providers
 
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No AdvanceRohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
Rohini Sector 22 Call Girls Delhi 9999965857 @Sabina Saikh No Advance
 
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
✂️ 👅 Independent Andheri Escorts With Room Vashi Call Girls 💃 9004004663
 
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptxAWS Community DAY Albertini-Ellan Cloud Security (1).pptx
AWS Community DAY Albertini-Ellan Cloud Security (1).pptx
 
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl ServiceRussian Call girl in Ajman +971563133746 Ajman Call girl Service
Russian Call girl in Ajman +971563133746 Ajman Call girl Service
 
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine ServiceHot Service (+9316020077 ) Goa  Call Girls Real Photos and Genuine Service
Hot Service (+9316020077 ) Goa Call Girls Real Photos and Genuine Service
 
On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024On Starlink, presented by Geoff Huston at NZNOG 2024
On Starlink, presented by Geoff Huston at NZNOG 2024
 
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
Call Girls In Sukhdev Vihar Delhi 💯Call Us 🔝8264348440🔝
 
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night StandHot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
Hot Call Girls |Delhi |Hauz Khas ☎ 9711199171 Book Your One night Stand
 
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort ServiceEnjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
Enjoy Night⚡Call Girls Dlf City Phase 3 Gurgaon >༒8448380779 Escort Service
 
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
All Time Service Available Call Girls Mg Road 👌 ⏭️ 6378878445
 
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
Best VIP Call Girls Noida Sector 75 Call Me: 8448380779
 
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...Top Rated  Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
Top Rated Pune Call Girls Daund ⟟ 6297143586 ⟟ Call Me For Genuine Sex Servi...
 
Call Girls In Noida 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In Noida 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICECall Girls In Noida 📱  9999965857  🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
Call Girls In Noida 📱 9999965857 🤩 Delhi 🫦 HOT AND SEXY VVIP 🍎 SERVICE
 
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...Pune Airport ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready...
Pune Airport ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready...
 
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
10.pdfMature Call girls in Dubai +971563133746 Dubai Call girls
 
SEO Growth Program-Digital optimization Specialist
SEO Growth Program-Digital optimization SpecialistSEO Growth Program-Digital optimization Specialist
SEO Growth Program-Digital optimization Specialist
 
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
Call Now ☎ 8264348440 !! Call Girls in Green Park Escort Service Delhi N.C.R.
 

presentation on IOT.pptx

  • 2. What is IOT? Internet Of Things- It is network that connect all the devices with each Other . “It is the network of physical devices, vehicles, home appliances and electronics items like software, sensors, motors. Which enable these objects to connect and exchange data with other.” Smart Phone, Smart Watches, Laptop Or any other device which is connected with Internet comes under the category of IOT . In Electronics we Learn how to connect Various sensors, motors etc. with a Internet, So that they can be accessible from anywhere in the World. 2
  • 3. Applications! Smart Homes. Smart City. Self-driven Cars. Farming. Wearables Devices. Easy maintenance . 3
  • 4. Future scope As India is a developing country, it has a wide IoT scope, the demand for an IoT Developer has jumped over 300 percent. Fields - Agriculture. Traffic monitoring. Automation. Health Tracking. 4
  • 5. “If you think that the internet has changed your life, think again . IOT is about to change it all over again! 5
  • 6. Microcontrollers It is an Electronic device, that is responsible for all the processing and calculation Part . Basically it is same as your Brain Just like brain things that I have to buy chocolate if Mom gives me the Money , here money is working as a input and our brain is a processor and chocolate is the output . 6
  • 7. How to implement IOT ╸ For the implementation of IOT we must a procssor or brain that has the ability to work with internet or wifi. ╸ So we Have NODE MCU Board, that has inbuilt WIFI and Bluetooth connectivity. Various models of NODEMCU are Available in Maket like ESP32, ESP8266 etc. 7
  • 8. ESP 32 It is a Dual Core Processor. It has wifi and bluetooth. It has a ROM of 448 kb. In-built temp. sensor included. Expensive than 8266. Comparison of ESP32 and 8266 ESP 8266 It is a Single Core Processor. It has only wifi . It has a ROM of 80 kb. No In-built temp. sensor is there. Cheaper than 8266. 8
  • 9. What is ESP8266? It is a low-cost Wi-Fi microcontroller. It supports Wi-Fi Connectivity, that means we can monitor or control anything with our mobile phone from anywhere in the world. Example- Suppose That you connect a led with that and now the led is in home and you are in school, you can turn in on and off from school by just using the phone. 9
  • 10. Pins diagram ESP8266 10 ╸ It has 17 GPIO pins ╸ 1 Analog input Pin ╸ It has 3.3v Output pin ╸ And various communications protocol pins like I2C , UART etc.
  • 11. What is DHT 11? It is a low-cost Temperature and Humidity Sensor, that comes with a dedicated NTC to measure temperature and an 8-bit microcontroller to output the values of temperature and humidity as serial data. 11
  • 12. Pins diagram DHT11 12 ╸ VCC And GND pin connects to the power supply of 3.3v to 5v ╸ Output pin is Data [2]pin, that Outputs both Temperature and Humidity through serial Data It is 3 pin Sensor
  • 13. What is MQ-2? It is a low-cost Smoke Sensor, used for the detection of gas leakage (home and industry). It is suitable for detecting H2, LPG, Alcohol, Smoke etc. 13
  • 14. Pins diagram MQ-02 14 ╸ VCC And GND pin connects to the power supply of 5v ╸ Output pin is are 2 one is Analog and other one is Digital Output. It is 4 pin Sensor
  • 15. What is Arduino IDE? It is a Open Source Software that means anyone can use it free. Just like when we need anything from father we go to mother and tell ask dad for that . Here Mother works as a medium between you and your dad. It provide us the medium to communicate with microcontroller . 15
  • 16. How to add ESP 8266 ? Step-1: In your Arduino IDE, Go to File> Preferences 16
  • 17. How to add ESP 8266 ? Step-2: Enter http://arduino.esp8266.com/stable/pac kage_esp8266com_index.json into the “Additional Boards Manager URLs”, then press ok. 17
  • 18. How to add ESP 8266 ? Step-3: Open the Boards Manager. Go to Tools > Board > Boards Manager… 18
  • 19. How to add ESP 8266 ? Step-4: Search for ESP8266 and press install button for the “ESP8266 by ESP8266 Community“: 19
  • 20. How to add ESP 8266 ? Step-5: That’s it. It should be installed after a few seconds. 20
  • 21. How to Interface? ╸ For the interfacing we must have DHT11, Mq-2, jumper wires, Esp 8266 and laptop for coding. 21
  • 22. How to connect DHT 11 ? First Connect Vcc of sensor to 3.3v of Esp board and ground to Gnd pin. Then connect data Pin of Dht 11 to D0 pin of Esp board 22
  • 23. How to connect MQ-02 ? First Connect Vcc of sensor to 3.3v of Esp board and ground to Gnd pin. Then connect the A0 Pin of MQ-02 to A0 pin of Esp board 23
  • 24. Programming ╸ For the measurement of temp. we need to install dht11 library from library manager . ╸ And for the measurement of smoke we just need to use if else statement. 24
  • 25. Programming For Temperature we have to use function float t = dht.readTemperature(); For Humidity the function is float h = dht.readHumidity(); And for smoke detection- 25
  • 26. Code #include "DHT.h" #define DHTPIN D0 #define DHTTYPE DHT11 DHT dht(DHTPIN, DHTTYPE); void setup() { Serial.begin(9600); Serial.println( “test!”); dht.begin(); } void loop() { float h = dht.readHumidity(); float t = dht.readTemperature(); 26 int analogSensor = analogRead(A0); if (analogSensor > 400) { Serial.println( “SMOKE DETECTED!!”); } else { Serial.println( “SMOKE NOT DETECTED”); } Serial.print(F(" Humidity: ")); Serial.print(h); Serial.print(F("% Temperature: ")); Serial.print(t); delay(100); }
  • 27. OUTPUT ╸ When it detect smoke the serial monitor will show smoke detected and if there is no smoke then it show smoke not detected ╸ After that serial monitor will show the Temp. and Humidity level 27