Communication And Networking Principles And Technologies For IoT Flashcards

Lecture 1-3

1
Q

How does a typical architecture of IoT device looks like?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Discuss the three basic tasks for an IoT decice.

A

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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Discuss what elements does a lot of power consumption? How do we reduce the consumption?

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Pros and cons of using a low duty cycle for power consumption?

A

Pro: Ensures long life
Con: Latency in data delivery, control and management of the network.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

A general IoT structure consist of..

A
  • 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.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Come with examples of Wired access networks, and discuss pros/cons.

A

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.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Come with examples of wireless capillary access networks, and discuss pros/cons.

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Come with examples of Low power Wide area access networks, and discuss pros/cons.

A

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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Discuss Satelite access network.

A

Satelite - serves as a relay between device and gateway: Satelite M2M communication.
High returns per device.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is the ratio (of control information vs data in human-oriented communications) in a short IoT packet?

A

Almost 50/50 ratio. We wish to have more data in human-oriented communications (which we have in larger packets)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Where to we see the use of uplink and downlink traffic in IoT?

A

Most IoT traffic is uplink oriented. For instance when sending data of sensor readings.
Downlink mostly used for signaling and network control functions.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Discuss real-time control IoT traffic.

A

Have already-defined cycles. Thereby easy to schedule (because they are static), and all devices should be synchronous.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Discuss Periodic monitoring IoT traffic.

A

Devices continuosly observe the enviroment. Reporting is performed regular periods, size vary from miliseconds to hours.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Discuss event detection IoT traffic.

A

Devices continuosly observe the enviroment. Will alarm the user about some event, and reported instantly. Example: Too high temperature, detection of movement.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly