SlideShare une entreprise Scribd logo
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

Contenu connexe

Similaire à INTERNET OF THINGS DEFINITION APPLICATION CASE STUDY

#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...
#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...
#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...
Agile Testing Alliance
 
IOT with Drupal 8 - Webinar Hyderabad Drupal Community
IOT with Drupal 8 -  Webinar Hyderabad Drupal CommunityIOT with Drupal 8 -  Webinar Hyderabad Drupal Community
IOT with Drupal 8 - Webinar Hyderabad Drupal Community
Prateek Jain
 
Introduction To BLOCKCHAIN
Introduction To BLOCKCHAIN Introduction To BLOCKCHAIN
Introduction To BLOCKCHAIN
zied khayechi
 
Pi Day 2022 - from IoT to MySQL HeatWave Database Service
Pi Day 2022 -  from IoT to MySQL HeatWave Database ServicePi Day 2022 -  from IoT to MySQL HeatWave Database Service
Pi Day 2022 - from IoT to MySQL HeatWave Database Service
Frederic Descamps
 
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
Codemotion
 
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
 
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
 
Kumar cscl final
Kumar cscl finalKumar cscl final
Kumar cscl final
Kumar Gaurav
 
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.pptx
lior 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 Tutorial
Tsahi 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 2019
Cisco DevNet
 
Road to RIoT 2017 Medan
Road to RIoT 2017 MedanRoad to RIoT 2017 Medan
Road to RIoT 2017 Medan
Albert Suwandhi
 
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 encryption
LeMeniz 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.pptx
ssuserfb92ae
 
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
Rofiq Fauzi
 

Similaire à INTERNET OF THINGS DEFINITION APPLICATION CASE STUDY (20)

#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...
#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...
#Interactive Session by Kirti Ranjan Satapathy and Nandini K, "Elements of Qu...
 
IOT with Drupal 8 - Webinar Hyderabad Drupal Community
IOT with Drupal 8 -  Webinar Hyderabad Drupal CommunityIOT with Drupal 8 -  Webinar Hyderabad Drupal Community
IOT with Drupal 8 - Webinar Hyderabad Drupal Community
 
Introduction To BLOCKCHAIN
Introduction To BLOCKCHAIN Introduction To BLOCKCHAIN
Introduction To BLOCKCHAIN
 
Pi Day 2022 - from IoT to MySQL HeatWave Database Service
Pi Day 2022 -  from IoT to MySQL HeatWave Database ServicePi Day 2022 -  from IoT to MySQL HeatWave Database Service
Pi Day 2022 - from IoT to MySQL HeatWave Database Service
 
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
 
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
 
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
 

Plus de 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 APPLICATION
imman gwu
 
UAV CATEGORIES CLASSIFICATION, TYPES USES
UAV CATEGORIES CLASSIFICATION, TYPES USESUAV CATEGORIES CLASSIFICATION, TYPES USES
UAV CATEGORIES CLASSIFICATION, TYPES USES
imman 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 RELATED
imman gwu
 
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHTDRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
DRONE PRINCIPLES BASIC PRINCIPLE OF FLIGHT
imman gwu
 
COMPANION TO MATRICES SESSION IV.pptx
COMPANION TO MATRICES SESSION IV.pptxCOMPANION TO MATRICES SESSION IV.pptx
COMPANION TO MATRICES SESSION IV.pptx
imman gwu
 
COMPANION TO MATRICES SESSION I.pptx
COMPANION TO MATRICES SESSION I.pptxCOMPANION TO MATRICES SESSION I.pptx
COMPANION TO MATRICES SESSION I.pptx
imman gwu
 
COMPANION TO MATRICES SESSION III.pptx
COMPANION TO MATRICES SESSION III.pptxCOMPANION TO MATRICES SESSION III.pptx
COMPANION TO MATRICES SESSION III.pptx
imman gwu
 
COMPANION TO MATRICES SESSION II.pptx
COMPANION TO MATRICES SESSION II.pptxCOMPANION TO MATRICES SESSION II.pptx
COMPANION TO MATRICES SESSION II.pptx
imman gwu
 
imman resume final
imman resume finalimman resume final
imman resume finalimman gwu
 

Plus de 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
 

Dernier

Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
Kerry Sado
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Steel & Timber Design according to British Standard
Steel & Timber Design according to British StandardSteel & Timber Design according to British Standard
Steel & Timber Design according to British Standard
AkolbilaEmmanuel1
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
bakpo1
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
TeeVichai
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
gestioneergodomus
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
SyedAbiiAzazi1
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
SamSarthak3
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
Kamal Acharya
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Christina Lin
 
Water billing management system project report.pdf
Water billing management system project report.pdfWater billing management system project report.pdf
Water billing management system project report.pdf
Kamal Acharya
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
aqil azizi
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
JoytuBarua2
 
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
ssuser7dcef0
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
anoopmanoharan2
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
gerogepatton
 

Dernier (20)

Hierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power SystemHierarchical Digital Twin of a Naval Power System
Hierarchical Digital Twin of a Naval Power System
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Steel & Timber Design according to British Standard
Steel & Timber Design according to British StandardSteel & Timber Design according to British Standard
Steel & Timber Design according to British Standard
 
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
一比一原版(SFU毕业证)西蒙菲莎大学毕业证成绩单如何办理
 
Railway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdfRailway Signalling Principles Edition 3.pdf
Railway Signalling Principles Edition 3.pdf
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
DfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributionsDfMAy 2024 - key insights and contributions
DfMAy 2024 - key insights and contributions
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application14 Template Contractual Notice - EOT Application
14 Template Contractual Notice - EOT Application
 
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdfAKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
AKS UNIVERSITY Satna Final Year Project By OM Hardaha.pdf
 
Final project report on grocery store management system..pdf
Final project report on grocery store management system..pdfFinal project report on grocery store management system..pdf
Final project report on grocery store management system..pdf
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming PipelinesHarnessing WebAssembly for Real-time Stateless Streaming Pipelines
Harnessing WebAssembly for Real-time Stateless Streaming Pipelines
 
Water billing management system project report.pdf
Water billing management system project report.pdfWater billing management system project report.pdf
Water billing management system project report.pdf
 
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdfTutorial for 16S rRNA Gene Analysis with QIIME2.pdf
Tutorial for 16S rRNA Gene Analysis with QIIME2.pdf
 
Planning Of Procurement o different goods and services
Planning Of Procurement o different goods and servicesPlanning Of Procurement o different goods and services
Planning Of Procurement o different goods and services
 
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
NUMERICAL SIMULATIONS OF HEAT AND MASS TRANSFER IN CONDENSING HEAT EXCHANGERS...
 
PPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testingPPT on GRP pipes manufacturing and testing
PPT on GRP pipes manufacturing and testing
 
Immunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary AttacksImmunizing Image Classifiers Against Localized Adversary Attacks
Immunizing Image Classifiers Against Localized Adversary Attacks
 

INTERNET OF THINGS DEFINITION APPLICATION CASE STUDY