SlideShare a Scribd company logo
1 of 64
Download to read offline
INTRODUCTION AND CONCEPTS OF IOT
 Introduction
 Physical Design
 Logical Design
 Enabling Technologies
 IoT Levels and Deployment
Templates
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 1
CREDITS
Arshdeep bhagha & Vijay Maddisetti
MRS sir
Google
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 2
INTERNET OF THINGS
IoT
Things – around us
Connected- Internet
Remote Controlling
Remote Monitoring
Applications-All Disciplines
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 3
INTRODUCTION TO IOT
“A dynamic global network infrastructure with self-configuring capabilities
based on standard and interoperable communication protocols where physical
and virtual "things" have identities, physical attributes, and virtual personalities
and use intelligent interfaces, and are seamlessly integrated into the
information network, often communicate data associated with users and their
environments”
Definition by
Arshadeep & Vijay
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 4
CHARACTERISTICS OF IOT
Dynamic & Self-Adapting
Self-Configuring
Interoperable Communication Protocols
Unique Identity
Integrated into Information Network
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 5
INTERNET OF THINGS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 6
INTERNET OF THINGS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 7
INTERNET OF THINGS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 8
INTERNET OF THINGS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 9
INTERNET OF THINGS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 10
INTERNET OF THINGS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 11
PHYSICAL DESIGN OF IOT
Things in IoT
IoT Protocols
Link Layer
Network Layer
Transport Layer
Application Layer
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 12
THINGS IN IOT
 The "Things" in IoT usually refers to IoT devices which have unique identities and
can perform remote sensing, actuating and monitoring capabilities.
 IoT devices can:
 Exchange data with other connected devices and applications (directly or indirectly), or
 Collect data from other devices and process the data locally or
 Send the data to centralized servers or cloud-based application back-ends for processing
the data, or
 Perform some tasks locally and other tasks within the IoT infrastructure, based on
temporal and space constraints
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 13
THINGS IN IOT
 An IoT device may consist of
several interfaces for connections
to other devices, both wired and
wireless.
 I/O interfaces for sensors
 Interfaces for Internet connectivity
 Memory and storage interfaces
 Audio/video interfaces.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 14
IOT PROTOCOLS
 Link Layer
 802.3 – Ethernet
 802.11 – WiFi
 802.16 – WiMax
 802.15.4 – LR-WPAN
 2G/3G/4G
 Network/Internet Layer
 IPv4
 IPv6
 6LoWPAN
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 15
IOT PROTOCOLS
 Transport Layer
 TCP
 UDP
 Application Layer
 HTTP
 CoAP
 WebSocket
 MQTT
 XMPP
 DDS
 AMQP
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 16
LOGICAL DESIGN OF IOT
 IoT Functional Blocks
 IoT Communication Models
 Request-Response
 Publish-Subscribe
 Push-Pull
 Exclisive Pair
 IoT Communication API’s
 Rest-based
 WebSocket-based
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 17
IOT FUNCTIONAL BLOCKS
 Logical design of an IoT system refers to an
abstract representation of the entities and
processes without going into the low-level
specifics of the implementation.
 An IoT system comprises of a number of
functional blocks that provide the system the
capabilities for identification, sensing, actuation,
communication, and management.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 18
REQUEST-RESPONSE COMMUNICATION MODEL
 Request-Response is a communication model in
which the client sends requests to the server
and the server responds to the requests.
 When the server receives a request, it decides
how to respond, fetches the data, retrieves
resource representations, prepares the
response, and then sends the response to the
client.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 19
PUBLISH-SUBSCRIBE COMMUNICATION MODEL
 Publish-Subscribe is a communication model that
involves publishers, brokers and consumers.
 Publishers are the source of data.
 Publishers send the data to the topics which are
managed by the broker.
 Publishers are not aware of the consumers.
Consumers subscribe to the topics which are
managed by the broker.
 When the broker receives data for a topic from the
publisher, it sends the data to all the subscribed
consumers.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 20
PUSH-PULL COMMUNICATION MODEL
 Push-Pull is a communication model in which the
data producers push the data to queues and the
consumers pull the data from the queues.
 Producers do not need to be aware of the
consumers.
 Queues help in decoupling the messaging between
the producers
 and consumers.
 Queues also act as a buffer which helps in
situations when there is a mismatch between the
rate at which the producers push data and the rate
rate at which the consumers pull data.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 21
EXCLUSIVE PAIR COMMUNICATION MODEL
 Exclusive Pair is a bidirectional, fully duplex
communication model that uses a persistent
connection between the client and server.
 Once the connection is setup it remains open
until the client sends a request to close the
connection.
 Client and server can send messages to each
other after connection setup.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 22
REST-BASED COMMUNICATION API
 Representational State Transfer (REST) is a set
of architectural principles by which you can
design web services and web APIs that focus on
a system’s resources and how resource states
are addressed and transferred.
 REST APIs follow the request response
communication model.
 The REST architectural constraints apply to the
components, connectors, and data elements,
within a distributed hypermedia system.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 23
WEB SOCKET-BASED COMMUNICATION API
 Web Socket APIs allow bidirectional, full duplex
communication between clients and servers.
 Web Socket APIs follow the exclusive pair
communication model
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 24
IOT ENABLING TECHNOLOGIES
AI, ML, DL
Wireless Sensor Networks
Cloud Computing
Big data Analytics
Communication Protocols
Embedded Systems
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 25
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 26
ARTIFICIAL INTELLIGENCE
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 27
ARTIFICIAL INTELLIGENCE
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 28
ARTIFICIAL INTELLIGENCE
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 29
ARTIFICIAL INTELLIGENCE
 AI
 Blue print of Human Intelligence
 Input-Process-Output,
 sense organs-Brain- (Movements)Legs, Mouth, Hands
 Sense-Process-Act,
 sensors-microcontrollers-Actuators
 Analysing
 Applications-All Disciplines
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 30
ARTIFICIAL INTELLIGENCE
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 31
ARTIFICIAL INTELLIGENCE
 AI
 Internet of Things (IoT)
 Machine Learning (ML)
 Deep Learning (DL)
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 32
MACHINE LEARNING
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 33
MACHINE LEARNING
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 34
MACHINE LEARNING
 ML-Automatic Learning by machine
 Dog-Bell-Experiment
 Applications-All Disciplines
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 35
MACHINE LEARNING
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 36
DEEP LEARNING
 DL-Has more hidden Layers
 neural networks
 Applications-All Disciplines
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 37
DEEP LEARNING
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 38
DEEP LEARNING
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 39
DEEP LEARNING
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 40
DATA SCIENCE
 DS-Useful data
 Decisions
 Applications-All Disciplines
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 41
DATA SCIENCE
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 42
GARTNER HYPE CYCLE
 AI
 Python
 Emerging Technologies
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 43
IOT LEVELS & DEPLOYMENT TEMPLATES
 IoT system Components
 IoT Level -1
 IoT Level -2
 IoT Level -3
 IoT Level -4
 IoT Level -5
 IoT Level -6
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 44
IOT SYSTEM COMPONENTS
 An IoT system comprises of the following components:
 Device:
 An IoT device allows identification, remote sensing, actuating and remote monitoring capabilities.
 Resource:
 Resources are software components on the IoT device for accessing, processing, and storing sensor
information, or controlling actuators connected to the device. Resources also include the software
components that enable network access for the device.
 Controller Service:
 Controller service is a native service that runs on the device and interacts with the web services.
Controller service sends data from the device to the web service and receives commands from the
application (via web services) for controlling the device.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 45
IOT SYSTEM COMPONENTS
 Database:
 Database can be either local or in the cloud and stores the data generated by the IoT device.
 Web Service:
 Web services serve as a link between the IoT device, application, database and analysis components. Web service can be
either implemented using HTTP and REST principles (REST service) or using WebSocket protocol (WebSocket service).
 Analysis Component:
 The Analysis Component is responsible for analysing the IoT data and generate results in a form which are easy for the user
to understand.
 Application:
 IoT applications provide an interface that the users can use to control and monitor various aspects of the IoT system.
Applications also allow users to view the system status and view the processed data.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 46
IOT LEVEL-1
 A level-1 IoT system has a single node/device
that performs sensing and/or actuation, stores
data, performs analysis and hosts the
application
 Level-1 IoT systems are suitable for modelling
low cost and low-complexity solutions where the
data involved is not big and the analysis
requirements are not computationally intensive.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 47
IOT LEVEL-2
 A level-2 IoT system has a single node that
performs sensing and/or actuation and local
analysis.
 Data is stored in the cloud and application is
usually cloud based.
 Level-2 IoT systems are suitable for solutions
where the data involved is big, however, the
primary analysis requirement is not
computationally intensive and can be done
locally itself.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 48
IOT LEVEL-3
 A level-3 IoT system has a single node. Data is
stored and analyzed in the cloud and application
is cloudbased.
 Level-3 IoT systems are suitable for solutions
where the data involved is big and the analysis
requirements are computationally intensive.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 49
IOT LEVEL-4
 A level-4 IoT system has multiple nodes that perform local
analysis. Data is stored in the cloud and application is
cloud-based.
 Level-4 contains local and cloud based observer nodes
which can subscribe to and receive information collected
in the cloud from IoT devices.
 Level-4 IoT systems are suitable for solutions where
multiple nodes are required, the data involved is big and
the analysis requirements are computationally intensive.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 50
IOT LEVEL-5
 A level-5 IoT system has multiple end nodes and one
coordinator node.
 The end nodes that perform sensing and/or actuation.
 Coordinator node collects data from the end nodes and
sends to the cloud.
 Data is stored and analyzed in the cloud and application is
cloud-based.
 Level-5 IoT systems are suitable for solutions based on
wireless sensor networks, in which the data involved is big
and the analysis requirements are computationally
intensive.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 51
IOT LEVEL-6
 A level-6 IoT system has multiple independent end nodes
that perform sensing and/or actuation and send data to
the cloud.
 Data is stored in the cloud and application is cloud-based.
 The analytics component analyses the data and stores the
results in the cloud database.
 The results are visualized with the cloud-based
application.
 The centralized controller is aware of the status of all the
end nodes and sends control commands to the nodes.
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 52
SUMMARY
INTRODUCTION AND CONCEPTS OF IOT
 Introduction
 Physical Design
 Logical Design
 Enabling Technologies
 IoT Levels and Deployment
Templates
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 53
LUXE: Smart Homes / Office
HARMONIZER APP DESIGN – for
SMART SWITCHES
Design by: Vikram + MRS
Sept 2020
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 54
LUXE: Smart Homes / Office LUXE: Smart Homes / Office
Single room
1BHK
2BHK
3BHK
Villa
LUXE: Smart Homes / Office
Single room
Switch 1
Switch 2
Switch 3
Switch 4
Switch 5
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 55
LUXE: Smart Homes / Office
Single room
1BHK
2BHK
3BHK
Villa
LUXE: Smart Homes / Office
Bed Room: SB 1
Switch 1
Switch 2
Switch 3
Switch 4
Switch 5
LUXE: Smart Homes / Office
Single room
1BHK
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 56
HARMONIZER INDIA PVT LTD.,
INTRODUCING
“CANNY” INTELLIGENT PANELS
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 57
PROBLEM STATEMENT IN ELECTRICAL
PANELS
 Temperature inside the Enclosure
 Heat Trap
 Deterioration of Insulation
 Smoke due to insulation burning
 Smoke due to Short circuit
 Vibration due to Busbar
 Vibration due to over
load/harmonics
 Over Load on the equipment
“CANNY” INTELLIGENT PANELS
SMART SOLUTION WITH MACHINE LEARNING TECHNOLOGY
Convert your existing Electrical
Switchboard to “Canny”
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 58
CANNY – AN INTELLIGENT ELECTRIC SWITCH BOARD
Measure
Analyse
Control
Field devices to measure
 Temperature in each Feeder, Cable,
Busbar
 Vibration on the Electric Switchboard
 Hot Spot Temperature
 Busbar alignment
 Insect, animal movement
 Smoke detection
Mobile APP for
 Monitoring Temperature
 Vibration on the Electric Switchboard
 Hot Spot Temperature
 Busbar alignment
Machine Learning Technology
 Alert
 Automatic Solution recommendation
Monitor
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 59
Canny
PCC 1
PCC 2
MCC 1
MCC 2
MCC 3
Canny
CANNY – MOBILE APP
PCC 1
Temperature
Smoke
Vibration
Canny
PCC 1 - Feeders
Feeder 1
Feeder 2
Feeder N
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 60
CANNY – MOBILE APP
Canny
PCC 1 - Feeders
Feeder 1
Feeder 2
Feeder N
Canny
Feeder 1
Tmax = 60Deg C
Tmini = 40Deg C
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 61
HARMONIZER INDIA PVT LTD.,
INTRODUCING INTELLIGENT PANELS
Measure
Monitor
Analyse
Control
Canny – Intelligent Switch board
Canny , Dapper
PCC 1
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 62
ANY CLARIFICATIONS?
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 63
THANK YOU FOR YOUR TIME
12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 64

More Related Content

What's hot

IoT Standards_ALICON_SE_2017_02_25_Rev_D
IoT Standards_ALICON_SE_2017_02_25_Rev_DIoT Standards_ALICON_SE_2017_02_25_Rev_D
IoT Standards_ALICON_SE_2017_02_25_Rev_DIke Alisson
 
Arrow IoT Quadro Wifi Kit
Arrow IoT Quadro Wifi KitArrow IoT Quadro Wifi Kit
Arrow IoT Quadro Wifi KitAspenCore
 
AIoT: Intelligence on Microcontroller
AIoT: Intelligence on MicrocontrollerAIoT: Intelligence on Microcontroller
AIoT: Intelligence on MicrocontrollerAndri Yadi
 
bhide_connected_raleigh2016 (1)
bhide_connected_raleigh2016 (1)bhide_connected_raleigh2016 (1)
bhide_connected_raleigh2016 (1)sandhibhide
 
A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...
A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...
A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...IRJET Journal
 
30 9137 e implementation of cloud connected smart plug (edit lafi)
30 9137 e implementation of cloud connected smart plug (edit lafi)30 9137 e implementation of cloud connected smart plug (edit lafi)
30 9137 e implementation of cloud connected smart plug (edit lafi)IAESIJEECS
 
Track 3 session 5 - st dev con 2016 - microsoft - from sensors to business ...
Track 3   session 5 - st dev con 2016 - microsoft - from sensors to business ...Track 3   session 5 - st dev con 2016 - microsoft - from sensors to business ...
Track 3 session 5 - st dev con 2016 - microsoft - from sensors to business ...ST_World
 
An IOT based solution for Road Accidents
An IOT based solution for Road AccidentsAn IOT based solution for Road Accidents
An IOT based solution for Road Accidentsijtsrd
 
Security challenges in IoT
Security challenges in IoTSecurity challenges in IoT
Security challenges in IoTVishnupriya T H
 
IOT 101 A Primer on Internet of Things
IOT 101 A Primer on Internet of ThingsIOT 101 A Primer on Internet of Things
IOT 101 A Primer on Internet of ThingsKuldeep Singh
 
domain specific iot system
domain specific iot systemdomain specific iot system
domain specific iot systemRadha Mahalle
 
Industrial IoT in a Nutshell
Industrial IoT in a NutshellIndustrial IoT in a Nutshell
Industrial IoT in a NutshellAndri Yadi
 
IRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET Journal
 

What's hot (20)

IoT Standards_ALICON_SE_2017_02_25_Rev_D
IoT Standards_ALICON_SE_2017_02_25_Rev_DIoT Standards_ALICON_SE_2017_02_25_Rev_D
IoT Standards_ALICON_SE_2017_02_25_Rev_D
 
Introduction to IoT - Unit I
Introduction to IoT - Unit IIntroduction to IoT - Unit I
Introduction to IoT - Unit I
 
Arrow IoT Quadro Wifi Kit
Arrow IoT Quadro Wifi KitArrow IoT Quadro Wifi Kit
Arrow IoT Quadro Wifi Kit
 
IOT beginnners
IOT beginnnersIOT beginnners
IOT beginnners
 
Lecture 14
Lecture 14Lecture 14
Lecture 14
 
AIoT: Intelligence on Microcontroller
AIoT: Intelligence on MicrocontrollerAIoT: Intelligence on Microcontroller
AIoT: Intelligence on Microcontroller
 
bhide_connected_raleigh2016 (1)
bhide_connected_raleigh2016 (1)bhide_connected_raleigh2016 (1)
bhide_connected_raleigh2016 (1)
 
A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...
A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...
A Smart Switch to Connect and Disconnect Electrical Devices at Home by using ...
 
30 9137 e implementation of cloud connected smart plug (edit lafi)
30 9137 e implementation of cloud connected smart plug (edit lafi)30 9137 e implementation of cloud connected smart plug (edit lafi)
30 9137 e implementation of cloud connected smart plug (edit lafi)
 
Track 3 session 5 - st dev con 2016 - microsoft - from sensors to business ...
Track 3   session 5 - st dev con 2016 - microsoft - from sensors to business ...Track 3   session 5 - st dev con 2016 - microsoft - from sensors to business ...
Track 3 session 5 - st dev con 2016 - microsoft - from sensors to business ...
 
Sgcp14phillips
Sgcp14phillipsSgcp14phillips
Sgcp14phillips
 
Lecture 16
Lecture 16Lecture 16
Lecture 16
 
An IOT based solution for Road Accidents
An IOT based solution for Road AccidentsAn IOT based solution for Road Accidents
An IOT based solution for Road Accidents
 
Security challenges in IoT
Security challenges in IoTSecurity challenges in IoT
Security challenges in IoT
 
Unit 1 part-1
Unit 1 part-1Unit 1 part-1
Unit 1 part-1
 
IOT 101 A Primer on Internet of Things
IOT 101 A Primer on Internet of ThingsIOT 101 A Primer on Internet of Things
IOT 101 A Primer on Internet of Things
 
Iot
IotIot
Iot
 
domain specific iot system
domain specific iot systemdomain specific iot system
domain specific iot system
 
Industrial IoT in a Nutshell
Industrial IoT in a NutshellIndustrial IoT in a Nutshell
Industrial IoT in a Nutshell
 
IRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: ReviewIRJET- Home Automation using IoT: Review
IRJET- Home Automation using IoT: Review
 

Similar to Introduction and Concepts of IoT

INTRODUCTION TO INTERNET OF THINGS
INTRODUCTION TO INTERNET OF THINGSINTRODUCTION TO INTERNET OF THINGS
INTRODUCTION TO INTERNET OF THINGSVikram Nandini
 
A REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONS
A REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONSA REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONS
A REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONSIRJET Journal
 
IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...
IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...
IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...Mark Goldstein
 
IEEE SusTech IoT Keynote Presentation 10/10/16
IEEE SusTech IoT Keynote Presentation 10/10/16IEEE SusTech IoT Keynote Presentation 10/10/16
IEEE SusTech IoT Keynote Presentation 10/10/16Mark Goldstein
 
IRJET - Securing Communication among IoT Devices using Blockchain Proxy
IRJET -  	  Securing Communication among IoT Devices using Blockchain ProxyIRJET -  	  Securing Communication among IoT Devices using Blockchain Proxy
IRJET - Securing Communication among IoT Devices using Blockchain ProxyIRJET Journal
 
IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...
IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...
IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...Mistral Solutions
 
IEEE Radio & Wireless Week IoT Powered by Wireless Presentation
IEEE Radio & Wireless Week IoT Powered by Wireless PresentationIEEE Radio & Wireless Week IoT Powered by Wireless Presentation
IEEE Radio & Wireless Week IoT Powered by Wireless PresentationMark Goldstein
 
IEEE CS Phoenix - Internet of Things Innovations & Megatrends Update
IEEE CS Phoenix - Internet of Things Innovations & Megatrends UpdateIEEE CS Phoenix - Internet of Things Innovations & Megatrends Update
IEEE CS Phoenix - Internet of Things Innovations & Megatrends UpdateMark Goldstein
 
Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022
Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022
Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022HostedbyConfluent
 
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET Journal
 
Fog Computing - DEV.BG 2018
Fog Computing - DEV.BG 2018Fog Computing - DEV.BG 2018
Fog Computing - DEV.BG 2018Trayan Iliev
 
Design of a Hybrid Authentication Technique for User and Device Authenticatio...
Design of a Hybrid Authentication Technique for User and Device Authenticatio...Design of a Hybrid Authentication Technique for User and Device Authenticatio...
Design of a Hybrid Authentication Technique for User and Device Authenticatio...IRJET Journal
 
Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...
Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...
Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...Bristol Is Open
 
21 Innovative IoT Products To Watch at Hannover Messe 2017
21 Innovative IoT Products To Watch at Hannover Messe 201721 Innovative IoT Products To Watch at Hannover Messe 2017
21 Innovative IoT Products To Watch at Hannover Messe 2017Kudzai Manditereza
 
INTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoT
INTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoTINTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoT
INTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoTMuhammad Ahad
 
Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...
Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...
Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...IRJET Journal
 

Similar to Introduction and Concepts of IoT (20)

INTRODUCTION TO INTERNET OF THINGS
INTRODUCTION TO INTERNET OF THINGSINTRODUCTION TO INTERNET OF THINGS
INTRODUCTION TO INTERNET OF THINGS
 
A REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONS
A REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONSA REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONS
A REVIEW PAPER ON “IOT” & FUTURE RESEARCH IN INTERNET APPLICATIONS
 
IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...
IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...
IEEE Computer Society Phoenix Chapter - Internet of Things Innovations & Mega...
 
IEEE SusTech IoT Keynote Presentation 10/10/16
IEEE SusTech IoT Keynote Presentation 10/10/16IEEE SusTech IoT Keynote Presentation 10/10/16
IEEE SusTech IoT Keynote Presentation 10/10/16
 
COMPARATIVE STUDY BETWEEN VARIOUS PROTOCOLS USED IN INTERNET OF THING
COMPARATIVE STUDY BETWEEN VARIOUS  PROTOCOLS USED IN INTERNET OF THINGCOMPARATIVE STUDY BETWEEN VARIOUS  PROTOCOLS USED IN INTERNET OF THING
COMPARATIVE STUDY BETWEEN VARIOUS PROTOCOLS USED IN INTERNET OF THING
 
IOT_PPT1.pdf
IOT_PPT1.pdfIOT_PPT1.pdf
IOT_PPT1.pdf
 
IRJET - Securing Communication among IoT Devices using Blockchain Proxy
IRJET -  	  Securing Communication among IoT Devices using Blockchain ProxyIRJET -  	  Securing Communication among IoT Devices using Blockchain Proxy
IRJET - Securing Communication among IoT Devices using Blockchain Proxy
 
fogcomputing
fogcomputingfogcomputing
fogcomputing
 
IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...
IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...
IoT based Industrial Gateway (IoT-SDK) built around Sitara™ AM437x processors...
 
IEEE Radio & Wireless Week IoT Powered by Wireless Presentation
IEEE Radio & Wireless Week IoT Powered by Wireless PresentationIEEE Radio & Wireless Week IoT Powered by Wireless Presentation
IEEE Radio & Wireless Week IoT Powered by Wireless Presentation
 
Web of things
Web of thingsWeb of things
Web of things
 
IEEE CS Phoenix - Internet of Things Innovations & Megatrends Update
IEEE CS Phoenix - Internet of Things Innovations & Megatrends UpdateIEEE CS Phoenix - Internet of Things Innovations & Megatrends Update
IEEE CS Phoenix - Internet of Things Innovations & Megatrends Update
 
Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022
Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022
Tactical Virtual Assistance (TVA) With Jubal Biggs | Current 2022
 
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its ApplicationsIRJET- A Review Paper on Internet of Things(IoT) and its Applications
IRJET- A Review Paper on Internet of Things(IoT) and its Applications
 
Fog Computing - DEV.BG 2018
Fog Computing - DEV.BG 2018Fog Computing - DEV.BG 2018
Fog Computing - DEV.BG 2018
 
Design of a Hybrid Authentication Technique for User and Device Authenticatio...
Design of a Hybrid Authentication Technique for User and Device Authenticatio...Design of a Hybrid Authentication Technique for User and Device Authenticatio...
Design of a Hybrid Authentication Technique for User and Device Authenticatio...
 
Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...
Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...
Smart Cities, IoT, SDN, 5G Networks, Cloud Computing… Managing Complexity wit...
 
21 Innovative IoT Products To Watch at Hannover Messe 2017
21 Innovative IoT Products To Watch at Hannover Messe 201721 Innovative IoT Products To Watch at Hannover Messe 2017
21 Innovative IoT Products To Watch at Hannover Messe 2017
 
INTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoT
INTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoTINTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoT
INTEROPERABILITY, FLEXIBILITY AND INDUSTRIAL DESIGN REQUIREMENTS IN THE IoT
 
Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...
Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...
Assessing Vulnerabilities in Bluetooth Low Energy (BLE) Wireless Network base...
 

More from Vikram Nandini

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarVikram Nandini
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and CommandsVikram Nandini
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsVikram Nandini
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II PartVikram Nandini
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online ComponentsVikram Nandini
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural NetworksVikram Nandini
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected DevicesVikram Nandini
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoTVikram Nandini
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber SecurityVikram Nandini
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfVikram Nandini
 
Introduction to Web Technologies
Introduction to Web TechnologiesIntroduction to Web Technologies
Introduction to Web TechnologiesVikram Nandini
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style SheetsVikram Nandini
 

More from Vikram Nandini (20)

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold Bar
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and Commands
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic Commands
 
INTRODUCTION to OOAD
INTRODUCTION to OOADINTRODUCTION to OOAD
INTRODUCTION to OOAD
 
Ethics
EthicsEthics
Ethics
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II Part
 
Manufacturing
ManufacturingManufacturing
Manufacturing
 
Business Models
Business ModelsBusiness Models
Business Models
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online Components
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural Networks
 
IoT-Prototyping
IoT-PrototypingIoT-Prototyping
IoT-Prototyping
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected Devices
 
Introduction to IoT
Introduction to IoTIntroduction to IoT
Introduction to IoT
 
Embedded decices
Embedded decicesEmbedded decices
Embedded decices
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoT
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber Security
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdf
 
Introduction to Web Technologies
Introduction to Web TechnologiesIntroduction to Web Technologies
Introduction to Web Technologies
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
 

Recently uploaded

week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptxJonalynLegaspi2
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmStan Meyer
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)lakshayb543
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDhatriParmar
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationdeepaannamalai16
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfJemuel Francisco
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvRicaMaeCastro1
 
Using Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea DevelopmentUsing Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea Developmentchesterberbo7
 
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxDIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxMichelleTuguinay1
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptxmary850239
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17Celine George
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxkarenfajardo43
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management SystemChristalin Nelson
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptxmary850239
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Seán Kennedy
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxHumphrey A Beña
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataBabyAnnMotar
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxDhatriParmar
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxlancelewisportillo
 

Recently uploaded (20)

week 1 cookery 8 fourth - quarter .pptx
week 1 cookery 8  fourth  -  quarter .pptxweek 1 cookery 8  fourth  -  quarter .pptx
week 1 cookery 8 fourth - quarter .pptx
 
Oppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and FilmOppenheimer Film Discussion for Philosophy and Film
Oppenheimer Film Discussion for Philosophy and Film
 
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
Visit to a blind student's school🧑‍🦯🧑‍🦯(community medicine)
 
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptxDecoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
Decoding the Tweet _ Practical Criticism in the Age of Hashtag.pptx
 
Congestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentationCongestive Cardiac Failure..presentation
Congestive Cardiac Failure..presentation
 
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdfGrade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
Grade 9 Quarter 4 Dll Grade 9 Quarter 4 DLL.pdf
 
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnvESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
ESP 4-EDITED.pdfmmcncncncmcmmnmnmncnmncmnnjvnnv
 
Using Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea DevelopmentUsing Grammatical Signals Suitable to Patterns of Idea Development
Using Grammatical Signals Suitable to Patterns of Idea Development
 
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptxDIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
DIFFERENT BASKETRY IN THE PHILIPPINES PPT.pptx
 
4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx4.11.24 Poverty and Inequality in America.pptx
4.11.24 Poverty and Inequality in America.pptx
 
How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17How to Fix XML SyntaxError in Odoo the 17
How to Fix XML SyntaxError in Odoo the 17
 
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptxGrade Three -ELLNA-REVIEWER-ENGLISH.pptx
Grade Three -ELLNA-REVIEWER-ENGLISH.pptx
 
Transaction Management in Database Management System
Transaction Management in Database Management SystemTransaction Management in Database Management System
Transaction Management in Database Management System
 
4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx4.11.24 Mass Incarceration and the New Jim Crow.pptx
4.11.24 Mass Incarceration and the New Jim Crow.pptx
 
Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...Student Profile Sample - We help schools to connect the data they have, with ...
Student Profile Sample - We help schools to connect the data they have, with ...
 
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptxINTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
INTRODUCTION TO CATHOLIC CHRISTOLOGY.pptx
 
Measures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped dataMeasures of Position DECILES for ungrouped data
Measures of Position DECILES for ungrouped data
 
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptxMan or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
Man or Manufactured_ Redefining Humanity Through Biopunk Narratives.pptx
 
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptxINCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
INCLUSIVE EDUCATION PRACTICES FOR TEACHERS AND TRAINERS.pptx
 
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptxQ4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
Q4-PPT-Music9_Lesson-1-Romantic-Opera.pptx
 

Introduction and Concepts of IoT

  • 1. INTRODUCTION AND CONCEPTS OF IOT  Introduction  Physical Design  Logical Design  Enabling Technologies  IoT Levels and Deployment Templates 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 1
  • 2. CREDITS Arshdeep bhagha & Vijay Maddisetti MRS sir Google 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 2
  • 3. INTERNET OF THINGS IoT Things – around us Connected- Internet Remote Controlling Remote Monitoring Applications-All Disciplines 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 3
  • 4. INTRODUCTION TO IOT “A dynamic global network infrastructure with self-configuring capabilities based on standard and interoperable communication protocols where physical and virtual "things" have identities, physical attributes, and virtual personalities and use intelligent interfaces, and are seamlessly integrated into the information network, often communicate data associated with users and their environments” Definition by Arshadeep & Vijay 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 4
  • 5. CHARACTERISTICS OF IOT Dynamic & Self-Adapting Self-Configuring Interoperable Communication Protocols Unique Identity Integrated into Information Network 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 5
  • 6. INTERNET OF THINGS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 6
  • 7. INTERNET OF THINGS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 7
  • 8. INTERNET OF THINGS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 8
  • 9. INTERNET OF THINGS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 9
  • 10. INTERNET OF THINGS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 10
  • 11. INTERNET OF THINGS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 11
  • 12. PHYSICAL DESIGN OF IOT Things in IoT IoT Protocols Link Layer Network Layer Transport Layer Application Layer 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 12
  • 13. THINGS IN IOT  The "Things" in IoT usually refers to IoT devices which have unique identities and can perform remote sensing, actuating and monitoring capabilities.  IoT devices can:  Exchange data with other connected devices and applications (directly or indirectly), or  Collect data from other devices and process the data locally or  Send the data to centralized servers or cloud-based application back-ends for processing the data, or  Perform some tasks locally and other tasks within the IoT infrastructure, based on temporal and space constraints 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 13
  • 14. THINGS IN IOT  An IoT device may consist of several interfaces for connections to other devices, both wired and wireless.  I/O interfaces for sensors  Interfaces for Internet connectivity  Memory and storage interfaces  Audio/video interfaces. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 14
  • 15. IOT PROTOCOLS  Link Layer  802.3 – Ethernet  802.11 – WiFi  802.16 – WiMax  802.15.4 – LR-WPAN  2G/3G/4G  Network/Internet Layer  IPv4  IPv6  6LoWPAN 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 15
  • 16. IOT PROTOCOLS  Transport Layer  TCP  UDP  Application Layer  HTTP  CoAP  WebSocket  MQTT  XMPP  DDS  AMQP 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 16
  • 17. LOGICAL DESIGN OF IOT  IoT Functional Blocks  IoT Communication Models  Request-Response  Publish-Subscribe  Push-Pull  Exclisive Pair  IoT Communication API’s  Rest-based  WebSocket-based 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 17
  • 18. IOT FUNCTIONAL BLOCKS  Logical design of an IoT system refers to an abstract representation of the entities and processes without going into the low-level specifics of the implementation.  An IoT system comprises of a number of functional blocks that provide the system the capabilities for identification, sensing, actuation, communication, and management. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 18
  • 19. REQUEST-RESPONSE COMMUNICATION MODEL  Request-Response is a communication model in which the client sends requests to the server and the server responds to the requests.  When the server receives a request, it decides how to respond, fetches the data, retrieves resource representations, prepares the response, and then sends the response to the client. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 19
  • 20. PUBLISH-SUBSCRIBE COMMUNICATION MODEL  Publish-Subscribe is a communication model that involves publishers, brokers and consumers.  Publishers are the source of data.  Publishers send the data to the topics which are managed by the broker.  Publishers are not aware of the consumers. Consumers subscribe to the topics which are managed by the broker.  When the broker receives data for a topic from the publisher, it sends the data to all the subscribed consumers. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 20
  • 21. PUSH-PULL COMMUNICATION MODEL  Push-Pull is a communication model in which the data producers push the data to queues and the consumers pull the data from the queues.  Producers do not need to be aware of the consumers.  Queues help in decoupling the messaging between the producers  and consumers.  Queues also act as a buffer which helps in situations when there is a mismatch between the rate at which the producers push data and the rate rate at which the consumers pull data. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 21
  • 22. EXCLUSIVE PAIR COMMUNICATION MODEL  Exclusive Pair is a bidirectional, fully duplex communication model that uses a persistent connection between the client and server.  Once the connection is setup it remains open until the client sends a request to close the connection.  Client and server can send messages to each other after connection setup. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 22
  • 23. REST-BASED COMMUNICATION API  Representational State Transfer (REST) is a set of architectural principles by which you can design web services and web APIs that focus on a system’s resources and how resource states are addressed and transferred.  REST APIs follow the request response communication model.  The REST architectural constraints apply to the components, connectors, and data elements, within a distributed hypermedia system. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 23
  • 24. WEB SOCKET-BASED COMMUNICATION API  Web Socket APIs allow bidirectional, full duplex communication between clients and servers.  Web Socket APIs follow the exclusive pair communication model 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 24
  • 25. IOT ENABLING TECHNOLOGIES AI, ML, DL Wireless Sensor Networks Cloud Computing Big data Analytics Communication Protocols Embedded Systems 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 25
  • 30. ARTIFICIAL INTELLIGENCE  AI  Blue print of Human Intelligence  Input-Process-Output,  sense organs-Brain- (Movements)Legs, Mouth, Hands  Sense-Process-Act,  sensors-microcontrollers-Actuators  Analysing  Applications-All Disciplines 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 30
  • 32. ARTIFICIAL INTELLIGENCE  AI  Internet of Things (IoT)  Machine Learning (ML)  Deep Learning (DL) 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 32
  • 35. MACHINE LEARNING  ML-Automatic Learning by machine  Dog-Bell-Experiment  Applications-All Disciplines 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 35
  • 37. DEEP LEARNING  DL-Has more hidden Layers  neural networks  Applications-All Disciplines 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 37
  • 41. DATA SCIENCE  DS-Useful data  Decisions  Applications-All Disciplines 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 41
  • 43. GARTNER HYPE CYCLE  AI  Python  Emerging Technologies 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 43
  • 44. IOT LEVELS & DEPLOYMENT TEMPLATES  IoT system Components  IoT Level -1  IoT Level -2  IoT Level -3  IoT Level -4  IoT Level -5  IoT Level -6 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 44
  • 45. IOT SYSTEM COMPONENTS  An IoT system comprises of the following components:  Device:  An IoT device allows identification, remote sensing, actuating and remote monitoring capabilities.  Resource:  Resources are software components on the IoT device for accessing, processing, and storing sensor information, or controlling actuators connected to the device. Resources also include the software components that enable network access for the device.  Controller Service:  Controller service is a native service that runs on the device and interacts with the web services. Controller service sends data from the device to the web service and receives commands from the application (via web services) for controlling the device. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 45
  • 46. IOT SYSTEM COMPONENTS  Database:  Database can be either local or in the cloud and stores the data generated by the IoT device.  Web Service:  Web services serve as a link between the IoT device, application, database and analysis components. Web service can be either implemented using HTTP and REST principles (REST service) or using WebSocket protocol (WebSocket service).  Analysis Component:  The Analysis Component is responsible for analysing the IoT data and generate results in a form which are easy for the user to understand.  Application:  IoT applications provide an interface that the users can use to control and monitor various aspects of the IoT system. Applications also allow users to view the system status and view the processed data. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 46
  • 47. IOT LEVEL-1  A level-1 IoT system has a single node/device that performs sensing and/or actuation, stores data, performs analysis and hosts the application  Level-1 IoT systems are suitable for modelling low cost and low-complexity solutions where the data involved is not big and the analysis requirements are not computationally intensive. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 47
  • 48. IOT LEVEL-2  A level-2 IoT system has a single node that performs sensing and/or actuation and local analysis.  Data is stored in the cloud and application is usually cloud based.  Level-2 IoT systems are suitable for solutions where the data involved is big, however, the primary analysis requirement is not computationally intensive and can be done locally itself. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 48
  • 49. IOT LEVEL-3  A level-3 IoT system has a single node. Data is stored and analyzed in the cloud and application is cloudbased.  Level-3 IoT systems are suitable for solutions where the data involved is big and the analysis requirements are computationally intensive. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 49
  • 50. IOT LEVEL-4  A level-4 IoT system has multiple nodes that perform local analysis. Data is stored in the cloud and application is cloud-based.  Level-4 contains local and cloud based observer nodes which can subscribe to and receive information collected in the cloud from IoT devices.  Level-4 IoT systems are suitable for solutions where multiple nodes are required, the data involved is big and the analysis requirements are computationally intensive. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 50
  • 51. IOT LEVEL-5  A level-5 IoT system has multiple end nodes and one coordinator node.  The end nodes that perform sensing and/or actuation.  Coordinator node collects data from the end nodes and sends to the cloud.  Data is stored and analyzed in the cloud and application is cloud-based.  Level-5 IoT systems are suitable for solutions based on wireless sensor networks, in which the data involved is big and the analysis requirements are computationally intensive. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 51
  • 52. IOT LEVEL-6  A level-6 IoT system has multiple independent end nodes that perform sensing and/or actuation and send data to the cloud.  Data is stored in the cloud and application is cloud-based.  The analytics component analyses the data and stores the results in the cloud database.  The results are visualized with the cloud-based application.  The centralized controller is aware of the status of all the end nodes and sends control commands to the nodes. 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 52
  • 53. SUMMARY INTRODUCTION AND CONCEPTS OF IOT  Introduction  Physical Design  Logical Design  Enabling Technologies  IoT Levels and Deployment Templates 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 53
  • 54. LUXE: Smart Homes / Office HARMONIZER APP DESIGN – for SMART SWITCHES Design by: Vikram + MRS Sept 2020 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 54
  • 55. LUXE: Smart Homes / Office LUXE: Smart Homes / Office Single room 1BHK 2BHK 3BHK Villa LUXE: Smart Homes / Office Single room Switch 1 Switch 2 Switch 3 Switch 4 Switch 5 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 55
  • 56. LUXE: Smart Homes / Office Single room 1BHK 2BHK 3BHK Villa LUXE: Smart Homes / Office Bed Room: SB 1 Switch 1 Switch 2 Switch 3 Switch 4 Switch 5 LUXE: Smart Homes / Office Single room 1BHK 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 56
  • 57. HARMONIZER INDIA PVT LTD., INTRODUCING “CANNY” INTELLIGENT PANELS 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 57
  • 58. PROBLEM STATEMENT IN ELECTRICAL PANELS  Temperature inside the Enclosure  Heat Trap  Deterioration of Insulation  Smoke due to insulation burning  Smoke due to Short circuit  Vibration due to Busbar  Vibration due to over load/harmonics  Over Load on the equipment “CANNY” INTELLIGENT PANELS SMART SOLUTION WITH MACHINE LEARNING TECHNOLOGY Convert your existing Electrical Switchboard to “Canny” 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 58
  • 59. CANNY – AN INTELLIGENT ELECTRIC SWITCH BOARD Measure Analyse Control Field devices to measure  Temperature in each Feeder, Cable, Busbar  Vibration on the Electric Switchboard  Hot Spot Temperature  Busbar alignment  Insect, animal movement  Smoke detection Mobile APP for  Monitoring Temperature  Vibration on the Electric Switchboard  Hot Spot Temperature  Busbar alignment Machine Learning Technology  Alert  Automatic Solution recommendation Monitor 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 59
  • 60. Canny PCC 1 PCC 2 MCC 1 MCC 2 MCC 3 Canny CANNY – MOBILE APP PCC 1 Temperature Smoke Vibration Canny PCC 1 - Feeders Feeder 1 Feeder 2 Feeder N 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 60
  • 61. CANNY – MOBILE APP Canny PCC 1 - Feeders Feeder 1 Feeder 2 Feeder N Canny Feeder 1 Tmax = 60Deg C Tmini = 40Deg C 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 61
  • 62. HARMONIZER INDIA PVT LTD., INTRODUCING INTELLIGENT PANELS Measure Monitor Analyse Control Canny – Intelligent Switch board Canny , Dapper PCC 1 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 62
  • 64. THANK YOU FOR YOUR TIME 12/26/2020VIKRAM NEERUGATTI, SVCET, CHITTOOR. 64