IoT architecture, sensors and actuators notes — Unit 1
Free unit-wise study notes on iot architecture, sensors and actuators for Internet of Things, Semester 8 of B.Tech — Computer Science & Engineering — key concepts, examples, important questions and a revision checklist for semester exams.
An exhaustive deep-dive into the foundational architecture of the Internet of Things, including sensing mechanisms, actuation dynamics, and the multi-layered physical-to-digital transition.
Notebook — 8 pages
Page 1
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
1. The Internet of Things Paradigm
The Internet of Things (IoT) represents the convergence of physical objects with the digital internet. It is not merely connecting computers together, but connecting billions of 'things'—from pacemakers to jet engines, from smart thermostats to agricultural soil monitors—giving them the ability to sense their environment, communicate, and actuate changes without human intervention.
⇒1.1 The Definition and Scale
Formally, IoT is defined as a network of physical objects ('things') embedded with sensors, software, and other technologies for the purpose of connecting and exchanging data with other devices and systems over the internet. The scale of IoT dwarfs the traditional internet of PCs and smartphones. As of the mid-2020s, there are tens of billions of connected IoT devices, generating massive streams of telemetry data (Big Data) that require real-time processing and decision-making.
⇒1.2 The Core Components of an IoT System
Every complete IoT ecosystem, regardless of its specific application domain (Smart City, Industrial IoT, Healthcare), follows a fundamental four-stage workflow:
Sensing/Actuating: The physical layer where data is collected from the physical world (sensors) or actions are performed in the physical world (actuators).
Data Acquisition (DAQ): Converting analog signals from sensors into digital data streams that computers can process.
Edge IT Processing: Initial processing, filtering, and aggregation of data close to the source to reduce latency and bandwidth usage before transmission.
Cloud Analytics and Storage: Deep processing, machine learning, long-term storage, and user dashboard presentation at the data center or cloud level.
Page 2
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
2. IoT Reference Architectures
Because IoT encompasses so many distinct technologies (hardware, networking, cloud, AI), a standardized architecture is necessary to understand how the components interoperate. The most widely accepted model is the IoT World Forum (IoTWF) 7-Layer Reference Model.
⇒2.1 The IoTWF 7-Layer Model
Layer
Name
Core Functionality
Examples
7
Collaboration & Processes
Involving people, business logic, and enterprise integration.
Smart city control center, automated supply chain triggers
6
Application
Reporting, analytics, and control software.
Mobile apps, BI dashboards, predictive maintenance algorithms
5
Data Abstraction
Aggregating and rendering data into consistent formats.
Relational/NoSQL databases, data lakes, API gateways
4
Data Accumulation
Storage and processing of data-in-motion into data-at-rest.
HDFS, Apache Kafka, Cassandra
3
Edge (Fog) Computing
Data element analysis, filtering, and transformation near the source.
IoT Gateways, local micro-servers, routing switches
2
Connectivity
Communication and processing units translating protocols.
Wi-Fi, LoRaWAN, Cellular, Zigbee, Bluetooth
1
Physical Devices
The 'Things' in IoT. Hardware generating or receiving data.
Temperature sensors, motors, RFID tags, cameras
The lower layers (1-3) primarily deal with data generation and movement, constrained by power and processing limits. The upper layers (4-7) deal with data analysis and action, constrained primarily by latency and business rules.
Page 3
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
3. Sensing the Physical World
A sensor is a device that detects and responds to some type of input from the physical environment. The specific input could be light, heat, motion, moisture, pressure, or any one of a great number of other environmental phenomena. The output is generally a signal that is converted to human-readable display at the sensor location or transmitted electronically over a network for reading or further processing.
⇒3.1 Transduction and Analog-to-Digital Conversion
At the lowest level, sensors act as transducers, converting one form of energy into another—typically converting a physical phenomenon (like temperature) into an electrical signal (voltage or current change). However, computers only understand digital data (1s and 0s). Therefore, a crucial component of any sensor node is the Analog-to-Digital Converter (ADC).
Sampling Rate: How many times per second the continuous analog signal is read. Measured in Hertz (Hz). Higher rates capture faster changes but generate more data.
Resolution: The number of discrete digital values that can represent the analog signal. An 8-bit ADC can represent 256 (28) levels, while a 12-bit ADC can represent 4096 (212) levels, providing much higher precision.
⇒3.2 Characteristics of an Ideal Sensor
High Sensitivity: Small changes in the physical parameter result in large changes in the electrical output.
Linearity: The output signal is directly proportional to the measured property across the entire operating range.
High Resolution: Ability to detect the smallest possible change in the environment.
No Hysteresis: The sensor reading should be exactly the same for a given value, regardless of whether the value was reached by increasing or decreasing the physical parameter.
Page 4
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
4. Classification of Sensors
Sensors can be categorized across multiple dimensions based on their power source, output type, and the physical phenomenon they measure.
⇒4.1 Active vs. Passive Sensors
Active Sensors: Require an external power source to operate. They emit a signal and measure the response. Examples: LiDAR (emits laser pulses), Radar (emits radio waves), Ultrasonic sensors.
Passive Sensors: Do not require an external power source. They directly generate an electrical signal in response to an external stimulus. Examples: Thermocouples (generate voltage from a temperature gradient), Piezoelectric sensors (generate voltage from mechanical stress).
⇒4.2 Common IoT Sensor Categories
Category
Mechanism / Principle
Common IoT Applications
Temperature
Thermistors (resistance changes with heat), Thermocouples (Seebeck effect).
Water pipeline leak detection, tire pressure monitoring, altitude measurement.
Chemical / Gas
Chemiresistors, NDIR (Non-Dispersive Infrared).
Air quality monitoring (CO2, VOCs), hazardous gas leak detection in mines.
Inertial
MEMS Accelerometers, Gyroscopes.
Vehicle crash detection, smartphone orientation, structural health monitoring of bridges.
Page 5
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
5. MEMS: The Engine of IoT Scale
The explosion of IoT over the last decade is heavily indebted to Micro-Electro-Mechanical Systems (MEMS) technology. MEMS represents the miniaturization of mechanical and electro-mechanical elements down to the micrometer scale, fabricated using the same techniques used to create silicon microchips.
⇒5.1 Why MEMS Matter
Before MEMS, a gyroscope used in aircraft navigation was a massive, spinning brass wheel that weighed several kilograms. Today, a MEMS gyroscope is a microscopic vibrating structure etched into a silicon chip no larger than a grain of rice. This miniaturization provides three critical advantages for IoT:
Cost: Because they are manufactured on silicon wafers in massive batches (like CPUs), the cost per unit drops to pennies.
Power Consumption: Microscopic moving parts require micro-watts of power, allowing sensors to run for years on coin-cell batteries.
Integration: The mechanical sensor and the digital processing circuitry (ADC, logic) can be integrated onto the exact same piece of silicon, creating 'Smart Sensors' out of the box.
Without MEMS, wearable fitness trackers, ubiquitous smartphone sensors, and mass-deployed smart city monitors would be physically and economically impossible.
Page 6
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
6. Actuators: Manipulating the Physical World
If sensors are the eyes and ears of an IoT system, actuators are the hands. An actuator takes a digital command (or electrical signal) and converts it into physical action—typically motion, heat, or light.
⇒6.1 Types of Actuators
Electrical Actuators: The most common in IoT. Examples include DC motors, stepper motors (precise rotational steps), servo motors (precise angular positioning), and solenoids (linear push/pull magnetic action). Used in smart locks, robotic arms, and drone propellers.
Hydraulic Actuators: Use pressurized liquid to generate massive force. Not common in small IoT, but vital in heavy Industrial IoT (IIoT) applications like automated construction equipment or dam floodgate control.
Pneumatic Actuators: Use compressed air. Fast acting and clean. Common in factory automation, automated packaging lines, and HVAC damper controls.
Thermal/Magnetic Actuators: Shape-memory alloys or bimetallic strips that change shape when heated or exposed to magnetic fields.
Page 7
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
7. The Control Loop and Smart Objects
Sensors and actuators rarely exist in isolation. They are part of a closed-loop control system, governed by a microcontroller or cloud logic.
⇒7.1 The Feedback Loop
Consider a smart thermostat. The Sensor reads the room temperature (20°C). The Logic Unit (microcontroller) compares this to the setpoint (22°C). Detecting an error (-2°C), it sends a command to the Actuator (a relay switch turning on the furnace). As the room heats up, the sensor continuously feeds data back to the logic unit, which will eventually command the actuator to shut off the furnace when the setpoint is reached.
⇒7.2 What Makes an Object 'Smart'?
A traditional thermostat has a sensor and actuator, but it is not IoT. A 'Smart Object' must possess:
Physical Embodiment: A tangible object.
Minimal Computing: A microcontroller to process data locally.
Communication: A network interface (Wi-Fi, Bluetooth) to transmit data and receive remote commands.
Unique Identity: An IP address or UUID to be individually addressable over the network.
Page 8
Wink Notes
B.Tech CSE — 8th Semester
Internet of Things
— Unit - 1 —
8. Unit Summary and Exam Priorities
Unit 1 establishes the vocabulary and hardware foundation of the IoT degree track. Examiners focus heavily on the architectural layers and the physical transition from analog to digital.
Architecture: Memorize the 7 layers of the IoTWF Reference Model. Be prepared to map a real-world scenario (e.g., 'Smart Agriculture') onto these 7 layers, specifying exactly what happens at the Edge vs. the Cloud.
Sensors vs Actuators: Understand the difference between transduction (analog to electrical) and actuation (electrical to physical).
ADC: Understand how resolution (bits) and sampling rate (Hz) affect data fidelity and data volume. (e.g., Volume=Rate×Resolution×Time).
MEMS: Be able to articulate why MEMS is the critical enabling technology for modern IoT (cost, power, integration, size).