SlideShare a Scribd company logo
1 of 87
INTERNET OF THINGS
(IOT) USING NODE MCU
AND THINGSPEAK
MR.R.IMMANUAL
CTO,PEZRAY TECHNOLOGIES.
AP/MECH, SRI RAMAKRISHNA INSTITUTE OF TECHNOLOGY
11-02-2024 PEZRAY TECHNOLOGIES 1
Today menu
Programming basics
11-02-2024 PEZRAY TECHNOLOGIES 2
Programming….
The process of writing computer programs.(Wiki..)
The way to speak with computer with the help of its understandable language….(R.Immanual)
Understandable Language
Computer Knows Only Limited Vocabulary…..
Alphabets of computer language…..
A bit (short for binary digit) is the smallest unit of data in
a computer. A bit has a single binary value, either 0 or 1.
Although computers usually provide instructions that can test and
manipulate bits, they generally are designed to store data and
execute instructions in bit multiples called bytes.
Abbreviation for binary term, a unit of storage capable of holding a
single character. On almost all modern computers, a byte is equal to
8 bits. Large amounts of memory are indicated in terms of kilobytes
(1,024bytes), megabytes (1,048,576 bytes), and gigabytes
(1,073,741,824 bytes).
NUMBERS
1
2
3
4
5
6
7
8
9
10
BINARY
00000001
00000010
00000011
00000100
00000101
00000110
00000111
00001000
00001001
00001010
Using Transistor….
To Represent the Words…..
Using ASCI Table.
Colors
Mapping using standards like ASCII
A compiler is a program that translates the source code for another program from a
programing language into executable code. The source code is typically in a high-
level programming language (e. g. Pascal, C, C++, Java, Perl, C#, etc.).
Uses of speaking with computer
To solve a problem…
Problem Solving….
INPUT
ALGORITHMS
OUTPUT
Step by Step Instruction to solving a Problem….
MAKE A HORLICKS……
Hello Programmers help me to solve this
problem…
Write the pseudocode for the above
problem….
11-02-2024 PEZRAY TECHNOLOGIES 14
Find a word from dictionary
Time
to
solve
Size of a Problem
1
2
How my home connected with
Internet?
11-02-2024 PEZRAY TECHNOLOGIES 17
Cable Modem
DSL Modem
FIOS DEVICE
11-02-2024 PEZRAY TECHNOLOGIES 18
IP
11-02-2024 PEZRAY TECHNOLOGIES 19
(0-255)
WHO WILL PROVIDE IP ?
11-02-2024 PEZRAY TECHNOLOGIES 20
DYNAMIC HOST CONFIGURATION PROTOCOL
Is this number or word???
Which one is easy to remember?
11-02-2024 PEZRAY TECHNOLOGIES 21
PACKETS
DEMO
11-02-2024 PEZRAY TECHNOLOGIES 22
TCP (Transmission Control Protocol)
11-02-2024 PEZRAY TECHNOLOGIES 23
PORTS
WEBSITE OR EMAIL OR VIDEO ??
11-02-2024 PEZRAY TECHNOLOGIES 24
PROTOCOLS
SET OF RULES
WHAT TO DO WHEN A PERSON COME NEAR TO YOU?
WHAT TO DO A REQUEST COME FROM A DEVICE……
11-02-2024 PEZRAY TECHNOLOGIES 25
UDP (User Datagram Protocol)
Does not guarantee the delivery
USED IN VIDEO CONFERENCING
11-02-2024 PEZRAY TECHNOLOGIES 26
11-02-2024 PEZRAY TECHNOLOGIES 27
11-02-2024 PEZRAY TECHNOLOGIES 28
Router
Like our telephone operator
Connect the wires for particular IP
11-02-2024 PEZRAY TECHNOLOGIES 29
Traceroute
Tracert www.srit.org
Tracert www.Berkeley.edu
11-02-2024 PEZRAY TECHNOLOGIES 30
Routers between
Me and google
98% of international internet traffic flows undersea 426 active submarine cables span more
than 807,000 miles, transmitting data at 180,000 miles per second. Amazing?
Credit: Tyler Morgan-Wall, GeoJSON, and TeleGeography
11-02-2024 PEZRAY TECHNOLOGIES 31
HTTP
11-02-2024 PEZRAY TECHNOLOGIES 32
Inside the envelope
Html
Css
Jss
Python
Frameworks
Php
11-02-2024 PEZRAY TECHNOLOGIES 33
Kevin Ashton Describes “the Internet
of Things”
Def:
the network connecting objects in the
physical world to the Internet.
11-02-2024 PEZRAY TECHNOLOGIES 35
things connected to the internet
11-02-2024 PEZRAY TECHNOLOGIES 36
Application of IOT
11-02-2024 PEZRAY TECHNOLOGIES 37
IOT in Agriculture
11-02-2024 PEZRAY TECHNOLOGIES 38
11-02-2024 PEZRAY TECHNOLOGIES 39
Output from Cloud – blynk
11-02-2024 PEZRAY TECHNOLOGIES 41
Click on Login and create new account
11-02-2024 PEZRAY TECHNOLOGIES 42
Click on template
11-02-2024 PEZRAY TECHNOLOGIES 43
Create New Template
11-02-2024 PEZRAY TECHNOLOGIES 44
Click on data streams
11-02-2024 PEZRAY TECHNOLOGIES 45
Click on virtual pin
11-02-2024 PEZRAY TECHNOLOGIES 46
Click on create then click on web
dashboard add widget as switch
11-02-2024 PEZRAY TECHNOLOGIES 47
Click on settings
11-02-2024 PEZRAY TECHNOLOGIES 48
Change datastream
11-02-2024 PEZRAY TECHNOLOGIES 49
Click on search and add new device
11-02-2024 PEZRAY TECHNOLOGIES 50
Click on from template
11-02-2024 PEZRAY TECHNOLOGIES 51
Finally click on create
11-02-2024 PEZRAY TECHNOLOGIES 52
Open arduino
Change the
BLYNK_AUTH_TOKEN
Change wifi name and
password
11-02-2024 PEZRAY TECHNOLOGIES 53
11-02-2024 PEZRAY TECHNOLOGIES 54
Also download the app (Blynk)
11-02-2024 PEZRAY TECHNOLOGIES 55
/Include the library files
#define BLYNK_PRINT Serial
#include <ESP8266WiFi.h>
#include <BlynkSimpleEsp8266.h>
//Define the relay pins
#define relay1 D0
#define relay2 D1
#define BLYNK_AUTH_TOKEN "PxMR-TonkYHpaDYrYcNPMprZi7SIY3Jz" //Enter your blynk auth token
char auth[] = BLYNK_AUTH_TOKEN;
char ssid[] = "immangwu";//Enter your WIFI name
char pass[] = "immangwu";//Enter your WIFI password
11-02-2024 PEZRAY TECHNOLOGIES 56
//Get the button values
BLYNK_WRITE(V0) {
bool value1 = param.asInt();
// Check these values and turn the relay1 ON and OFF
if (value1 == 1) {
digitalWrite(relay1, LOW);
} else {
digitalWrite(relay1, HIGH);
}
}
11-02-2024 PEZRAY TECHNOLOGIES 57
//Get the button values
BLYNK_WRITE(V1) {
bool value2 = param.asInt();
// Check these values and turn the relay2 ON and OFF
if (value2 == 1) {
digitalWrite(relay2, LOW);
} else {
digitalWrite(relay2, HIGH);
}
}
11-02-2024 PEZRAY TECHNOLOGIES 58
void setup() {
//Set the relay pins as output pins
pinMode(relay1, OUTPUT);
pinMode(relay2, OUTPUT);
// Turn OFF the relay
digitalWrite(relay1, HIGH);
digitalWrite(relay2, HIGH);
//Initialize the Blynk library
Blynk.begin(auth, ssid, pass, "blynk.cloud", 80);
}
11-02-2024 PEZRAY TECHNOLOGIES 59
void loop() {
//Run the Blynk library
Blynk.run();
}
11-02-2024 PEZRAY TECHNOLOGIES 60
Input to Cloud – Thingspeak
11-02-2024 PEZRAY TECHNOLOGIES 61
11-02-2024 PEZRAY TECHNOLOGIES 62
Verify your email id
11-02-2024 PEZRAY TECHNOLOGIES 63
Click on New
channel
11-02-2024 PEZRAY TECHNOLOGIES 64
Click on save channel
11-02-2024 PEZRAY TECHNOLOGIES 65
11-02-2024 PEZRAY TECHNOLOGIES 66
11-02-2024 PEZRAY TECHNOLOGIES 67
Arduino code
https://www.blogger.com/u/3/blog/post/edit/4995420737532310073/1203982209188893459
11-02-2024 PEZRAY TECHNOLOGIES 68
11-02-2024 PEZRAY TECHNOLOGIES 70
ID Battery level Speed Battery Temp
01 100 80 35
02 99 90 35
03 98 100 35
Hosted on Server Get Battery level, Speed, Battery Temp
Accept Battery level, Speed, Battery Temp
NodeMCU with sensors
Send Speed,
Temp,
Bat_level
WRITE API
READ API
STEP 01
LOGIN TO https://www.000webhost.com/
SIGNUP THERE
LOGIN
11-02-2024 PEZRAY TECHNOLOGIES 71
Once you create a website
Click on Manage website
11-02-2024 PEZRAY TECHNOLOGIES 72
Click on database manager
11-02-2024 PEZRAY TECHNOLOGIES 73
Create new database
11-02-2024 PEZRAY TECHNOLOGIES 74
Click on Manage and open PhPmyadmin
11-02-2024 PEZRAY TECHNOLOGIES 75
Create Database
11-02-2024 PEZRAY TECHNOLOGIES 76
OPEN PHP FILES
Create dbconfig.php
11-02-2024 PEZRAY TECHNOLOGIES 77
Create db_connect.php
11-02-2024 PEZRAY TECHNOLOGIES 78
Create insert.php (Write API)
11-02-2024 PEZRAY TECHNOLOGIES 79
11-02-2024 PEZRAY TECHNOLOGIES 80
11-02-2024 PEZRAY TECHNOLOGIES 81
Likewise create necessary apis and
upload
Click on file manager
11-02-2024 PEZRAY TECHNOLOGIES 82
Click on public html and create a folder
api then upload all apis
11-02-2024 PEZRAY TECHNOLOGIES 83
11-02-2024 PEZRAY TECHNOLOGIES 84
ARDUINO – NODE MCU CODE TO UPDATE
THE DATABASE WITH SENSOR VALUES
https://github.com/immangwu
11-02-2024 PEZRAY TECHNOLOGIES 85
MY SITE CODES
Using the JS we can retrieve the sensor values from the db
https://github.com/immangwu?tab=repositories
Use the above link to take the html, css and JS code for the site
Final website link: http://immangwu.000webhostapp.com/
11-02-2024 PEZRAY TECHNOLOGIES 86
11-02-2024 PEZRAY TECHNOLOGIES 87
+91 9677817992
immangwu@gmail.com

More Related Content

Similar to INTERNET OF THINGS DEFINITION APPLICATION CASE STUDY

FIWARE Primer - Learn FIWARE in 60 Minutes
FIWARE Primer - Learn FIWARE in 60 MinutesFIWARE Primer - Learn FIWARE in 60 Minutes
FIWARE Primer - Learn FIWARE in 60 MinutesFederico Michele Facca
 
Federico Michele Facca - FIWARE Primer - Learn FIWARE in 60 Minutes
Federico Michele Facca - FIWARE Primer - Learn FIWARE in 60 MinutesFederico Michele Facca - FIWARE Primer - Learn FIWARE in 60 Minutes
Federico Michele Facca - FIWARE Primer - Learn FIWARE in 60 MinutesCodemotion
 
Resin.io overview (2016 July)
Resin.io overview (2016 July)Resin.io overview (2016 July)
Resin.io overview (2016 July)Balena
 
PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...
PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...
PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...SANTIAGO PABLO ALBERTO
 
Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...
Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...
Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...Gilles Fedak
 
Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...
Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...
Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...44CON
 
The Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptx
The Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptxThe Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptx
The Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptxlior mazor
 
Doc 39 Technical Brief on Broadband Last Mile Connectivity for SBI Colony
Doc 39 Technical Brief on Broadband Last Mile Connectivity for SBI ColonyDoc 39 Technical Brief on Broadband Last Mile Connectivity for SBI Colony
Doc 39 Technical Brief on Broadband Last Mile Connectivity for SBI ColonyNicheken Technologies Pvt Ltd
 
Baby Steps: A WebRTC Tutorial
Baby Steps: A WebRTC TutorialBaby Steps: A WebRTC Tutorial
Baby Steps: A WebRTC TutorialTsahi Levent-levi
 
Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019
Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019
Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019Cisco DevNet
 
NTSC ISDN to IP Video Conferencing Transition Recommendations
NTSC ISDN to IP Video Conferencing Transition RecommendationsNTSC ISDN to IP Video Conferencing Transition Recommendations
NTSC ISDN to IP Video Conferencing Transition RecommendationsVideoguy
 
Securing broker less publish subscribe systems using identity-based encryption
Securing broker less publish subscribe systems using identity-based encryptionSecuring broker less publish subscribe systems using identity-based encryption
Securing broker less publish subscribe systems using identity-based encryptionLeMeniz Infotech
 
CIRA Labs - Secure Home Gateway Project 2019-03.pptx
CIRA Labs - Secure Home Gateway Project 2019-03.pptxCIRA Labs - Secure Home Gateway Project 2019-03.pptx
CIRA Labs - Secure Home Gateway Project 2019-03.pptxssuserfb92ae
 
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016Rofiq Fauzi
 
[workshop] The Revolutionary WebRTC
[workshop] The Revolutionary WebRTC[workshop] The Revolutionary WebRTC
[workshop] The Revolutionary WebRTCGiacomo Vacca
 
Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]
Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]
Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]Mahadiputra S
 
Wecon HMI PI Series Q&A
Wecon HMI PI Series Q&AWecon HMI PI Series Q&A
Wecon HMI PI Series Q&ALily Zheng
 
Overpowered Kubernetes: CI/CD for K8s on Enterprise IaaS
Overpowered Kubernetes: CI/CD for K8s on Enterprise IaaSOverpowered Kubernetes: CI/CD for K8s on Enterprise IaaS
Overpowered Kubernetes: CI/CD for K8s on Enterprise IaaSJ On The Beach
 

Similar to INTERNET OF THINGS DEFINITION APPLICATION CASE STUDY (20)

FIWARE Primer - Learn FIWARE in 60 Minutes
FIWARE Primer - Learn FIWARE in 60 MinutesFIWARE Primer - Learn FIWARE in 60 Minutes
FIWARE Primer - Learn FIWARE in 60 Minutes
 
Federico Michele Facca - FIWARE Primer - Learn FIWARE in 60 Minutes
Federico Michele Facca - FIWARE Primer - Learn FIWARE in 60 MinutesFederico Michele Facca - FIWARE Primer - Learn FIWARE in 60 Minutes
Federico Michele Facca - FIWARE Primer - Learn FIWARE in 60 Minutes
 
Resin.io overview (2016 July)
Resin.io overview (2016 July)Resin.io overview (2016 July)
Resin.io overview (2016 July)
 
PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...
PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...
PLC: fabricación de PLC utilizando microcontroladores para uso didáctico con ...
 
Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...
Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...
Devcon3 : iExec Allowing Scalable, Efficient, and Virtualized Off-chain Execu...
 
Kumar cscl final
Kumar cscl finalKumar cscl final
Kumar cscl final
 
Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...
Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...
Using SmartNICs to Provide Better Data Center Security - Jack Matheson - 44CO...
 
The Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptx
The Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptxThe Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptx
The Hacking Games - A Road to Post Exploitation Meetup - 20240222.pptx
 
Doc 39 Technical Brief on Broadband Last Mile Connectivity for SBI Colony
Doc 39 Technical Brief on Broadband Last Mile Connectivity for SBI ColonyDoc 39 Technical Brief on Broadband Last Mile Connectivity for SBI Colony
Doc 39 Technical Brief on Broadband Last Mile Connectivity for SBI Colony
 
Baby Steps: A WebRTC Tutorial
Baby Steps: A WebRTC TutorialBaby Steps: A WebRTC Tutorial
Baby Steps: A WebRTC Tutorial
 
Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019
Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019
Webex Devices xAPI - DEVNET_2071 - Cisco Live - San Diego 2019
 
Road to RIoT 2017 Medan
Road to RIoT 2017 MedanRoad to RIoT 2017 Medan
Road to RIoT 2017 Medan
 
NTSC ISDN to IP Video Conferencing Transition Recommendations
NTSC ISDN to IP Video Conferencing Transition RecommendationsNTSC ISDN to IP Video Conferencing Transition Recommendations
NTSC ISDN to IP Video Conferencing Transition Recommendations
 
Securing broker less publish subscribe systems using identity-based encryption
Securing broker less publish subscribe systems using identity-based encryptionSecuring broker less publish subscribe systems using identity-based encryption
Securing broker less publish subscribe systems using identity-based encryption
 
CIRA Labs - Secure Home Gateway Project 2019-03.pptx
CIRA Labs - Secure Home Gateway Project 2019-03.pptxCIRA Labs - Secure Home Gateway Project 2019-03.pptx
CIRA Labs - Secure Home Gateway Project 2019-03.pptx
 
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
MikroTik Hotspot 2.0 (IEEE 802.11u) - MUM Jakarta 2016
 
[workshop] The Revolutionary WebRTC
[workshop] The Revolutionary WebRTC[workshop] The Revolutionary WebRTC
[workshop] The Revolutionary WebRTC
 
Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]
Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]
Mikrotik Network Simulator (MUM Presentation Material 2013) [COPY]
 
Wecon HMI PI Series Q&A
Wecon HMI PI Series Q&AWecon HMI PI Series Q&A
Wecon HMI PI Series Q&A
 
Overpowered Kubernetes: CI/CD for K8s on Enterprise IaaS
Overpowered Kubernetes: CI/CD for K8s on Enterprise IaaSOverpowered Kubernetes: CI/CD for K8s on Enterprise IaaS
Overpowered Kubernetes: CI/CD for K8s on Enterprise IaaS
 

More from imman gwu

DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATIONDSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATIONimman gwu
 
UAV CATEGORIES CLASSIFICATION, TYPES USES
UAV CATEGORIES CLASSIFICATION, TYPES USESUAV CATEGORIES CLASSIFICATION, TYPES USES
UAV CATEGORIES CLASSIFICATION, TYPES USESimman gwu
 
GWU_DRONE AND AI HOW DRONE AND AI RELATED
GWU_DRONE AND AI HOW DRONE AND AI RELATEDGWU_DRONE AND AI HOW DRONE AND AI RELATED
GWU_DRONE AND AI HOW DRONE AND AI RELATEDimman gwu
 
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHTDRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHTimman gwu
 
COMPANION TO MATRICES SESSION IV.pptx
COMPANION TO MATRICES SESSION IV.pptxCOMPANION TO MATRICES SESSION IV.pptx
COMPANION TO MATRICES SESSION IV.pptximman gwu
 
COMPANION TO MATRICES SESSION I.pptx
COMPANION TO MATRICES SESSION I.pptxCOMPANION TO MATRICES SESSION I.pptx
COMPANION TO MATRICES SESSION I.pptximman gwu
 
COMPANION TO MATRICES SESSION III.pptx
COMPANION TO MATRICES SESSION III.pptxCOMPANION TO MATRICES SESSION III.pptx
COMPANION TO MATRICES SESSION III.pptximman gwu
 
COMPANION TO MATRICES SESSION II.pptx
COMPANION TO MATRICES SESSION II.pptxCOMPANION TO MATRICES SESSION II.pptx
COMPANION TO MATRICES SESSION II.pptximman gwu
 
imman resume final
imman resume finalimman resume final
imman resume finalimman gwu
 

More from imman gwu (9)

DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATIONDSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
 
UAV CATEGORIES CLASSIFICATION, TYPES USES
UAV CATEGORIES CLASSIFICATION, TYPES USESUAV CATEGORIES CLASSIFICATION, TYPES USES
UAV CATEGORIES CLASSIFICATION, TYPES USES
 
GWU_DRONE AND AI HOW DRONE AND AI RELATED
GWU_DRONE AND AI HOW DRONE AND AI RELATEDGWU_DRONE AND AI HOW DRONE AND AI RELATED
GWU_DRONE AND AI HOW DRONE AND AI RELATED
 
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHTDRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
 
COMPANION TO MATRICES SESSION IV.pptx
COMPANION TO MATRICES SESSION IV.pptxCOMPANION TO MATRICES SESSION IV.pptx
COMPANION TO MATRICES SESSION IV.pptx
 
COMPANION TO MATRICES SESSION I.pptx
COMPANION TO MATRICES SESSION I.pptxCOMPANION TO MATRICES SESSION I.pptx
COMPANION TO MATRICES SESSION I.pptx
 
COMPANION TO MATRICES SESSION III.pptx
COMPANION TO MATRICES SESSION III.pptxCOMPANION TO MATRICES SESSION III.pptx
COMPANION TO MATRICES SESSION III.pptx
 
COMPANION TO MATRICES SESSION II.pptx
COMPANION TO MATRICES SESSION II.pptxCOMPANION TO MATRICES SESSION II.pptx
COMPANION TO MATRICES SESSION II.pptx
 
imman resume final
imman resume finalimman resume final
imman resume final
 

Recently uploaded

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxupamatechverse
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINESIVASHANKAR N
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130Suhani Kapoor
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escortsranjana rawat
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learningmisbanausheenparvam
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxAsutosh Ranjan
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidNikhilNagaraju
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingrakeshbaidya232001
 

Recently uploaded (20)

Introduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptxIntroduction to IEEE STANDARDS and its different types.pptx
Introduction to IEEE STANDARDS and its different types.pptx
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINEMANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
MANUFACTURING PROCESS-II UNIT-2 LATHE MACHINE
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
VIP Call Girls Service Hitech City Hyderabad Call +91-8250192130
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
9953056974 Call Girls In South Ex, Escorts (Delhi) NCR.pdf
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCRCall Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
Call Us -/9953056974- Call Girls In Vikaspuri-/- Delhi NCR
 
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
(MEERA) Dapodi Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Escorts
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
chaitra-1.pptx fake news detection using machine learning
chaitra-1.pptx  fake news detection using machine learningchaitra-1.pptx  fake news detection using machine learning
chaitra-1.pptx fake news detection using machine learning
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Coefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptxCoefficient of Thermal Expansion and their Importance.pptx
Coefficient of Thermal Expansion and their Importance.pptx
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
main PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfidmain PPT.pptx of girls hostel security using rfid
main PPT.pptx of girls hostel security using rfid
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Porous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writingPorous Ceramics seminar and technical writing
Porous Ceramics seminar and technical writing
 

INTERNET OF THINGS DEFINITION APPLICATION CASE STUDY