Communication And Networking Principles And Technologies For IoT Flashcards
Lecture 1-3
How does a typical architecture of IoT device looks like?
Sensors will be used to sense environment - will be sent to the microcontroller, which is run with help from battery and memory. Battery will help microcontroller transmit data further.
Discuss the three basic tasks for an IoT decice.
Sensing: observe the environment. (Temperature, humidity, pressure, noise, etc)
Computation: process the sensed data (done with help from the microcontroller. Usually C-like languages used for coding the microcontroller, fx Arduino)
Communication: transmit the data wirelessly (IoT transmitters could be ZigBee, LoRa. Typically low data rates, ~100 kbit/s)
Discuss what elements does a lot of power consumption? How do we reduce the consumption?
Transmitting and receiving data have high power consumption. LED is almost as high as receiving data. Reduce the power consumption by using sleep or standby. (Either periodicly or by trigger)
Communcation is power hungry. Computation and sensing also require some power.
Pros and cons of using a low duty cycle for power consumption?
Pro: Ensures long life
Con: Latency in data delivery, control and management of the network.
A general IoT structure consist of..
- The IoT device monitered and active
- A network creates end-to-end communication between machines
- An application server (responsable for running server side code) which processes data when demanded, to the machines.
Come with examples of Wired access networks, and discuss pros/cons.
Wired - cable between sensors: Cable, Optical, etc
Pros: Very reliable, very high rates, little delay, secure
Cons: Expensive to set up, vandalism, not scalable, no mobility.
Come with examples of wireless capillary access networks, and discuss pros/cons.
Wireless capillary - shared short-range link/network: IEEE 802.11, Wireless M-BUS, etc.
Pros: Cheap to set up, generally scalable, low power.
Cons: Short-range, low rates, weak security, lack of universal infrastructure. Multi-hop not a solution
Come with examples of Low power Wide area access networks, and discuss pros/cons.
Low power wide area: LoRa, SigFox
Pros: Cheap to set up, generally scalable, low power.
Cons: Short range, low rates, weaker security, lack of universal infrastructure. Multi-hop not a solution
Discuss Satelite access network.
Satelite - serves as a relay between device and gateway: Satelite M2M communication.
High returns per device.
What is the ratio (of control information vs data in human-oriented communications) in a short IoT packet?
Almost 50/50 ratio. We wish to have more data in human-oriented communications (which we have in larger packets)
Where to we see the use of uplink and downlink traffic in IoT?
Most IoT traffic is uplink oriented. For instance when sending data of sensor readings.
Downlink mostly used for signaling and network control functions.
Discuss real-time control IoT traffic.
Have already-defined cycles. Thereby easy to schedule (because they are static), and all devices should be synchronous.
Discuss Periodic monitoring IoT traffic.
Devices continuosly observe the enviroment. Reporting is performed regular periods, size vary from miliseconds to hours.
Discuss event detection IoT traffic.
Devices continuosly observe the enviroment. Will alarm the user about some event, and reported instantly. Example: Too high temperature, detection of movement.