9  WSN Overview: Fundamentals

In 60 Seconds

WSN fundamentals rest on three pillars: distributed sensing (autonomous nodes collect data cooperatively), energy-constrained design (radio consumes ~70% of power; duty cycling reduces consumption by 90-99%), and N-to-1 convergecast (many sensors send to one sink, creating the hotspot problem where nodes near the sink die 5-10x faster). A typical sensor node runs on 2 AA batteries for 1-2 years at 1% duty cycle. Self-healing mesh topologies route around failures automatically, but every design decision must optimize for energy, not throughput.

MVU: Minimum Viable Understanding

If you only have 5 minutes, here’s what you need to know about Wireless Sensor Networks for IoT:

  1. WSN = Distributed sensing + wireless communication - Autonomous sensor nodes collect data and cooperatively transmit it through the network
  2. Energy is EVERYTHING - Radio communication consumes ~70% of power; duty cycling can reduce consumption by 90-99%
  3. N-to-1 convergecast pattern - Many sensors send data to one sink node (opposite of broadcast)
  4. Self-healing mesh networks - Nodes automatically route around failures using multi-hop communication
  5. Data aggregation is key - Combining readings at intermediate nodes reduces transmissions by 85-95%

Bottom line: WSNs are the eyes and ears of IoT systems. If you’re deploying hundreds or thousands of sensors that need to run on batteries for years, understanding WSN fundamentals (energy management, topology, and data aggregation) is essential for success.

9.1 Learning Objectives

By the end of this chapter series, you will be able to:

  • Define WSN Concepts: Explain wireless sensor networks, sensor nodes, and their role in IoT
  • Describe Network Topologies: Compare star, mesh, cluster, and hybrid WSN configurations
  • Analyze Design Constraints: Evaluate energy efficiency as the primary constraint for WSN design
  • Explain Multi-Hop Communication: Describe how nodes relay data through intermediaries
  • Trace Historical Evolution: Understand WSN development from military origins to modern IoT applications
  • Apply Data Aggregation: Implement techniques to reduce transmission overhead in sensor networks

Key Concepts

  • Core Concept: Fundamental principle underlying WSN Overview: Fundamentals — understanding this enables all downstream design decisions
  • Key Metric: Primary quantitative measure for evaluating WSN Overview: Fundamentals performance in real deployments
  • Trade-off: Central tension in WSN Overview: Fundamentals design — optimizing one parameter typically degrades another
  • Protocol/Algorithm: Standard approach or algorithm most commonly used in WSN Overview: Fundamentals implementations
  • Deployment Consideration: Practical factor that must be addressed when deploying WSN Overview: Fundamentals in production
  • Common Pattern: Recurring design pattern in WSN Overview: Fundamentals that solves the most frequent implementation challenges
  • Performance Benchmark: Reference values for WSN Overview: Fundamentals performance metrics that indicate healthy vs. problematic operation

9.2 Prerequisites

Before diving into this chapter series, you should be familiar with:

  • Sensor Fundamentals and Types: Understanding of basic sensor operation, measurement principles, and sensor characteristics is essential for comprehending how sensor nodes collect environmental data
  • Networking Basics: Knowledge of fundamental networking concepts including network topologies, protocols, and communication models provides context for WSN architectures
  • Basic embedded systems concepts: Familiarity with microcontrollers, power management, and wireless communication will help understand sensor node hardware constraints

9.3 Chapter Overview

Wireless Sensor Networks (WSNs) represent a foundational technology in the Internet of Things ecosystem, consisting of spatially distributed autonomous sensors that cooperatively monitor physical or environmental conditions. This chapter series provides comprehensive coverage of WSN fundamentals across five focused topics.

Definition

A Wireless Sensor Network (WSN) is a collection of spatially distributed, autonomous sensor nodes that communicate wirelessly to collectively monitor physical or environmental conditions such as temperature, pressure, humidity, motion, vibration, pollutants, or other parameters of interest.

Imagine you want to monitor the temperature in every room of a huge building. You could run wires to each sensor, but that would be expensive and complicated. Instead, you could place wireless sensors throughout the building that talk to each other like a game of telephone, passing temperature readings from room to room until they reach a central computer.

Key points to remember:

  • Wireless = No cables needed between sensors
  • Sensor = A device that measures something (temperature, motion, humidity, etc.)
  • Network = Many sensors working together, sharing information

The magic happens when these sensors cooperate: if one sensor can’t reach the central computer directly, it sends its data through neighboring sensors until it arrives. This is called multi-hop communication, and it’s one of the key features that makes WSNs so powerful for large-scale monitoring.

Hey young engineers! Let’s learn about Wireless Sensor Networks with the Sensor Squad!

Sammy the Sensor lives in a smart building where lots of sensor friends work together to keep everyone safe and comfortable.

The Challenge: The building is SO big that Sammy can’t shout loud enough to reach the security office at the other end!

The Sensor Squad Solution: Pass-It-Along!

Here’s how Sammy’s neighborhood watch works:

  1. Sammy the Temperature Sensor (in the basement) notices it’s getting too hot: “Whoa, it’s 90 degrees down here!”
  2. Sammy tells Lila the Light Sensor on the first floor
  3. Lila passes the message to Max the Motion Detector on the second floor
  4. Max tells Bella the Button near the security office
  5. Bella alerts the Sink Node (like the neighborhood mayor) who calls for help!

Why do they work as a team?

Because each sensor is small and has a tiny battery! Shouting far away uses lots of energy. But whispering to a nearby friend uses hardly any energy at all. By working together, each sensor saves its battery and the message still gets through!

Fun Fact: This is called a “mesh network” - like a spider’s web where messages can take many different paths. If Max is sleeping (to save his battery), the message goes through a different friend instead!

Sensor Squad Energy Secret:

  • Sleep a lot = Use tiny amounts of energy (like hibernating bears)
  • Wake up briefly = Check for messages and take measurements
  • Go back to sleep = Save energy for the next measurement

This is called duty cycling, and it lets sensors run on a small battery for YEARS!

9.4 Chapter Series Navigation

This topic has been organized into five focused chapters for easier learning:

9.4.1 1. WSN Architecture and Applications

Covers the fundamentals of WSN architecture including:

  • Three-tier architecture (sensor nodes, gateways, backend systems)
  • Historical evolution from military origins to modern IoT
  • Core characteristics and self-organization
  • Application domains (environmental, industrial, agriculture, healthcare, smart cities)
  • Network topology visualization and clustering

9.4.2 2. Sensor Node Characteristics

Deep dive into sensor node hardware and capabilities:

  • Hardware components (sensing, processing, communication, power units)
  • Node capabilities and resource constraints
  • Multi-hop communication and the radio power law
  • WSN vs. traditional networks comparison
  • Node types and roles (regular, cluster head, gateway, actuator, mobile)
  • Worked examples on energy hotspot analysis

9.4.3 3. Emergent Swarm Behavior

Explores distributed intelligence in WSNs:

  • Reynolds’ Boids model and the three fundamental rules
  • Separation, alignment, and cohesion in networks
  • WSN applications of swarm behavior
  • Coverage optimization and self-healing
  • Swarm vs. centralized control comparison
  • Connection to distributed consensus algorithms

9.4.4 4. Communication Paradigms

Covers the unique communication patterns in WSNs:

  • The N-to-1 convergecast pattern
  • Comparison with telephony (1-to-1) and broadcast (1-to-N)
  • Data aggregation techniques and benefits
  • IoT as integration of all three paradigms
  • Design implications and solutions
  • WSN and IoT relationship

9.4.5 5. Energy Management and Duty Cycling

Comprehensive coverage of energy optimization:

  • Energy consumption profiles and constraints
  • Conservation strategies (duty cycling, data reduction, topology control)
  • Synchronous duty cycling (S-MAC)
  • Asynchronous duty cycling (B-MAC, X-MAC)
  • Advanced techniques (adaptive, predictive, wake-on-radio)
  • Performance trade-offs and knowledge checks

9.5 Quick Reference: WSN Fundamentals

Concept Key Insight
Primary Constraint Energy efficiency - radio consumes 70% of power
Communication Pattern N-to-1 convergecast (many sensors to one sink)
Key Technique Duty cycling reduces power by 90-99%
Emergent Behavior Simple local rules create intelligent network coordination
Data Aggregation Reduces transmissions by 85-95%

9.6 WSN Architecture Overview

The following diagram illustrates the three-tier architecture of a typical Wireless Sensor Network, showing how data flows from distributed sensor nodes through gateways to backend systems:

Hierarchical diagram of WSN three-tier architecture: Tier 1 at bottom shows two sensor clusters (A and B) with multiple sensor nodes connected to orange cluster heads. Tier 2 in the middle shows two gateway border routers in teal. Tier 3 at top shows navy cloud storage and analytics connected to user applications. Data flows upward from sensors through cluster heads to gateways to cloud to applications.

Three-tier WSN architecture showing data flow from sensor clusters through gateways to cloud backend.
Figure 9.1: Three-tier WSN architecture showing data flow from sensor clusters through gateways to cloud backend.

Key insights from this architecture:

  • Tier 1 (Sensor Field): Resource-constrained nodes organized into clusters; cluster heads aggregate data from member nodes
  • Tier 2 (Gateway Layer): Border routers bridge the wireless sensor network to IP-based networks
  • Tier 3 (Backend): Cloud systems provide storage, analytics, and user-facing applications

9.7 WSN Communication Patterns

Understanding communication patterns is critical for WSN design. The following diagram compares the three fundamental patterns:

Side-by-side comparison of three communication patterns: Left shows 1-to-1 telephony with bidirectional arrow between caller and receiver. Center shows 1-to-N broadcast with TV station sending to multiple viewers. Right highlights N-to-1 convergecast in teal where multiple sensors send data to a single orange sink node, which is the primary WSN pattern.

Comparison of three fundamental communication patterns in networks.
Figure 9.2: Comparison of three fundamental communication patterns in networks.

WSNs primarily use the N-to-1 convergecast pattern where many sensor nodes send data to a single sink. This is the opposite of broadcast and creates unique challenges:

  • Traffic concentration near the sink node (energy hotspot problem)
  • Multi-hop routing required for distant nodes
  • Data aggregation opportunities at intermediate nodes

9.7.1 The Energy Hotspot Problem

The following diagram illustrates why nodes close to the sink deplete their batteries faster - they must relay traffic from all distant nodes:

Concentric ring diagram showing energy hotspot problem in WSN. Outer ring in teal has sensors transmitting once per period. Middle ring in orange has sensors transmitting 4 times per period due to relay duty. Inner ring in red shows sensors with high load warnings transmitting 10 times per period. All traffic converges on the central navy sink node, illustrating why inner nodes deplete batteries faster.

Multi-hop routing creates energy hotspots near the sink node.
Figure 9.3: Multi-hop routing creates energy hotspots near the sink node.

Key insight: Inner ring nodes must relay traffic from ALL outer rings plus their own data. A node next to the sink in a 3-ring network handles ~10x more transmissions than an outer node, depleting its battery ~10x faster.

9.8 Energy Consumption in WSNs

The following diagram shows the typical energy budget of a sensor node, highlighting why radio communication is the primary design constraint:

Pie chart showing sensor node energy budget: Radio transmission and reception dominates at 70 percent shown in navy, processing uses 20 percent in teal, sensing consumes 8 percent in orange, and memory uses only 2 percent in gray. This illustrates why optimizing radio communication is critical for WSN design.

Breakdown of energy consumption in a typical WSN sensor node.
Figure 9.4: Breakdown of energy consumption in a typical WSN sensor node.

The radio dominates energy consumption, which is why:

  • Duty cycling (sleeping 90-99% of the time) is essential
  • Data aggregation reduces the number of transmissions
  • Multi-hop routing uses less energy than long-range direct transmission

Radio energy typically follows the path loss equation:

\[E_{tx} = E_{elec} \times k + \epsilon_{amp} \times k \times d^2\]

where \(k\) is message size in bits, \(d\) is distance, \(E_{elec}\) is electronics energy, and \(\epsilon_{amp}\) is amplifier energy.

Worked example: Transmitting 100 bits over 50m vs 100m (with \(E_{elec} = 50\) nJ/bit, \(\epsilon_{amp} = 100\) pJ/bit/m²): - 50m: \(E = 50 \times 100 + 100 \times 100 \times 50^2 = 5 + 25,000 = 25,005\) nJ - 100m: \(E = 50 \times 100 + 100 \times 100 \times 100^2 = 5 + 100,000 = 100,005\) nJ - Impact: Doubling distance quadruples transmission energy (4× more!)

9.9 Duty Cycling: The Key to Long Battery Life

Duty cycling is the most effective technique for extending WSN node lifetime. The following diagram illustrates how a node alternates between active and sleep states:

State diagram showing WSN node duty cycling: Starting from power on, node enters Sleep state where it spends 99 percent of time at 10 microamps. Timer or event triggers Wake transition, followed by Sense, Process, and Transmit states. After transmission (less than 1 percent of time at 20 milliamps), node returns to Sleep. This cycle enables years of battery life.

WSN duty cycling state machine showing sleep-wake transitions.
Figure 9.5: WSN duty cycling state machine showing sleep-wake transitions.

Duty Cycling Example Calculation:

State Duration Current Energy per Cycle
Sleep 9.9 seconds 10 μA 99 μJ
Active 0.1 seconds 20 mA 2,000 μJ
Total 10 seconds Average: 210 μA 2,099 μJ

With a 99% duty cycle, average current drops from 20mA to just 210μA - enabling a 2000mAh battery to last over 1 year instead of just 4 days! (2000 mAh / 0.21 mA = 9,524 hours ≈ 397 days)

Common Pitfalls in WSN Design

Avoid these frequent mistakes when designing WSNs:

  1. Ignoring the Energy Hotspot Problem - Nodes near the sink deplete faster because they relay traffic for distant nodes. Solution: Use unequal cluster sizes or mobile sinks.

  2. Oversampling Data - Sampling every second when every minute would suffice wastes 60x more energy. Match sampling rate to application requirements.

  3. Using Long-Range Direct Transmission - Transmit power increases with the square of distance. Multi-hop with shorter links is almost always more energy efficient.

  4. Neglecting Sleep Mode Power - Even “sleeping” nodes consume power. Some radios draw 1mA in sleep vs 10μA for others - that’s a 100x difference over years!

  5. Ignoring Duty Cycle Synchronization - If node A wakes when node B is asleep, messages are lost. Use synchronous protocols or wake-up radios for critical applications.

9.10 Worked Example: WSN Deployment Planning

Scenario: You need to deploy a WSN for early forest fire detection across a 1 km² area. The system must detect temperature anomalies and report to a central station.

Given Parameters:

  • Coverage area: 1 km × 1 km (1,000,000 m²)
  • Sensor detection range: 50 meters radius
  • Radio communication range: 100 meters
  • Battery capacity: 2,000 mAh at 3.3V
  • Active current: 25 mA, Sleep current: 15 μA
  • Sample rate needed: Once per minute

Step 1: Calculate Number of Sensors for Coverage

Coverage area per sensor = π × r² = π × 50² = 7,854 m²

Minimum sensors = 1,000,000 / 7,854 = 127 sensors (for ideal coverage)

With overlap for k=2 coverage (redundancy): ~200 sensors

Step 2: Design Network Topology

With 100m radio range and 1km span, we need multi-hop: - Maximum hops = 1000m / 100m = 10 hops to reach any sink - Using a mesh topology with 4 sink nodes at corners reduces max hops to 5

Step 3: Calculate Battery Lifetime

Duty cycle needed: 1 minute period, 100ms active time - Duty cycle = 0.1 / 60 = 0.17%

Average current = (0.1/60 × 25mA) + (59.9/60 × 0.015mA) = 0.042mA + 0.015mA = 0.057 mA

Battery life = 2000mAh / 0.057mA = 35,087 hours = 4 years

Step 4: Consider Hotspot Effect

Nodes adjacent to sinks relay for ~25 other nodes on average: - Relay overhead: 25 × 1 transmission per minute = 25 extra TX/min - Adjusted active time: 100ms × 26 = 2.6s per minute - Hotspot node lifetime: ~6 months (8x shorter!)

Solution: Deploy solar-powered nodes near sinks, or rotate sink locations using mobile sinks.

Key Insights:

  1. Always calculate both coverage AND connectivity requirements
  2. Battery life at hotspot nodes determines true network lifetime
  3. Adding 4 sinks instead of 1 can extend network lifetime by 4x

9.11 Knowledge Check

Test your understanding of WSN fundamentals:

9.11.1 Interactive Battery Life Calculator

Challenge: Design a WSN with 5-year battery life using a CR2032 coin cell (220mAh). What duty cycle do you need?

Hint: Work backwards from the required lifetime to find the maximum average current, then solve for duty cycle.

Solution: 5 years = 43,800 hours. Max avg current = 220 mAh / 43,800 hr = 0.00502 mA = 5.02 µA. With 20mA active and 1µA sleep: 0.00502 = D × 20 + (1-D) × 0.001. Solving: D ≈ 0.02% duty cycle (active 1.8s per hour). Very aggressive but achievable with event-driven wake-up radio!


Scenario: A 200m × 150m factory floor needs 80 temperature/vibration sensors. Compare mesh vs. star topologies for cost, lifetime, and reliability.

Mesh Topology (AODV Routing):

  • All 80 nodes participate in routing
  • Average hop count from far corners: 5 hops
  • Node at position (100m, 75m) relays for ~12 downstream neighbors
  • Energy calculation per relay node:
    • Own data: 1 tx/min × 50 bytes × 20 mA × 10 ms = 0.01 mAh/min
    • Relay 12 nodes: 12 tx/min × 50 bytes × 20 mA × 10 ms = 0.12 mAh/min
    • Receive 12 nodes: 12 rx/min × 50 bytes × 15 mA × 10 ms = 0.09 mAh/min
    • Total: 0.22 mAh/min = 316.8 mAh/day
  • Battery life (2000 mAh): 6.3 days (relay node) vs. 133 days (edge node)
  • Routing overhead: 150 RREQ packets/hour for route discovery
  • Cost: 80 nodes × $35 = $2,800

Star Topology (20 nodes per gateway, 4 gateways):

  • Nodes transmit directly to nearest gateway (no relay burden)
  • Max distance to gateway: 71m (diagonal of 50m cell)
  • Energy calculation per node:
    • Own data only: 1 tx/min × 50 bytes × 20 mA × 10 ms = 0.01 mAh/min
    • Total: 0.01 mAh/min = 14.4 mAh/day
  • Battery life (2000 mAh): 138 days (all nodes equal)
  • No routing overhead (direct communication)
  • Cost: 80 nodes × $25 + 4 gateways × $200 = $2,800

Comparison Table:

Metric Mesh Star (4 Gateways)
Worst-case node lifetime 6.3 days 138 days
Best-case node lifetime 133 days 138 days
Lifetime uniformity 21× disparity Equal
Annual battery visits 80×(365/6.3) = 4,635 80×(365/138) = 212
Labor cost/year (@$50/visit) $231,750 $10,600
Routing overhead 3.6 MB/day 0
Single point failure risk Distributed 4 gateways (redundant)

Decision: Star topology with 4 gateways wins decisively. Despite identical hardware cost, star eliminates the hotspot problem, reduces battery maintenance by 95%, removes routing overhead, and provides uniform node lifetimes. The mesh only wins if gateway placement is impossible (rare in factory environments with ceiling/wall mounting available).

Key Insight: Mesh routing’s theoretical benefit (no infrastructure) is overwhelmed by practical energy costs in dense deployments. Adding gateways costs nothing (same total $ as mesh nodes), solves the hotspot problem, and extends lifetime by 20× for critical nodes.

Protocol Synchronization Latency Energy Efficiency Best Application
S-MAC (Synchronized) Required (periodic SYNC packets) 50-100 ms average Excellent (99% sleep, zero preamble) Static networks, periodic data collection
X-MAC (Asynchronous) None (preamble-based) 50-100 ms average Good (early ACK saves 40% over B-MAC) Dynamic networks, node mobility
B-MAC (Asynchronous) None (long preamble) Full wake interval (100+ ms) Fair (no early ACK optimization) Legacy systems only
Wake-up Radio None (always monitoring) <10 ms Excellent (10 µA monitor + main sleep) Event-driven, latency-critical
Always-On N/A <1 ms Poor (15-20 mA continuous) Grid-powered only

Selection Process:

  1. Power source: If mains-powered → Always-On. If battery → continue.

  2. Latency requirement: If <20 ms required → Wake-up radio (+$8/node, worth it for life-safety). If <200 ms acceptable → S-MAC or X-MAC. If >1 second OK → any protocol.

  3. Network dynamics: If nodes frequently join/leave → X-MAC (no sync maintenance). If static topology → S-MAC (best energy).

  4. Data pattern: If continuous periodic (every minute) → S-MAC. If sporadic events (hourly, or triggered) → X-MAC or wake-up radio.

Real-World Examples:

  • Forest fire detection: Wake-up radio ($8/node × 500 = $4,000). Justification: <10 second alert requirement, low event frequency (0.1% of time), 10-year deployment = $4K prevents multi-million dollar fire damage.
  • Smart building HVAC: S-MAC (free, firmware-only). Justification: 1-minute sampling sufficient, static deployment, synchronized schedule natural for HVAC systems.
  • Vehicle tracking: X-MAC (free, firmware-only). Justification: Vehicles moving create dynamic topology, 100-500 ms latency acceptable for fleet management.
Common Mistake: Underestimating the Impact of Clock Drift on Synchronization

The Mistake: Deploying S-MAC with 10-second wake intervals and SYNC messages every 10 minutes, assuming ±50 ppm crystal accuracy is “good enough.”

Why It Fails: At ±50 ppm, two nodes drift ±100 ppm relative to each other. Over 10 minutes (600 seconds), drift accumulates to 600s × 100 ppm = 60 ms. With 10 ms wake windows, nodes miss each other’s transmissions, causing packet loss despite perfect radio connectivity.

Real-World Failure: A 300-node building monitoring system using S-MAC experienced 35-40% packet loss after 24 hours operation. The culprit: temperature variations (±15°C day/night) caused crystal frequency shifts of 100+ ppm. SYNC messages every 10 minutes couldn’t compensate fast enough during rapid temperature changes at dawn/dusk.

The Fix:

  1. Increase wake window: 10 ms → 30 ms wake window tolerates 3× more drift (increases idle listening energy by 3×, but fixes the packet loss).
  2. Increase SYNC frequency: 10 min → 2 min SYNC messages. Cost: 2.4 packets/hour × 30 bytes × 300 nodes = 21.6 KB/hour overhead (acceptable).
  3. Temperature-compensated crystals: Use TCXO (±1 ppm) instead of standard crystals (±50 ppm). Cost: +$3/node. Overkill for most applications, but essential for <5 ms wake windows.

Better Approach: For networks requiring tight synchronization (<20 ms wake windows), use X-MAC asynchronous protocol instead. X-MAC tolerates unlimited clock drift because senders actively probe with preambles until receivers wake – no synchronization maintenance required. Trade-off: 2× higher energy per packet, but 100% delivery vs. 60-65% delivery with misaligned S-MAC.

Rule of Thumb: S-MAC synchronization is fragile – only use with wake intervals >50 ms, SYNC frequency <5 minutes, and temperature-stable environments (indoor). For outdoor deployments with temperature swings, X-MAC’s asynchronous approach is more robust despite slightly higher energy cost.

Quick Check: WSN Communication Pattern

In a typical WSN monitoring deployment, hundreds of sensor nodes send data to a single sink. What is this communication pattern called?

  1. Broadcast (1-to-N)
  2. Unicast (1-to-1)
  3. Convergecast (N-to-1)
  4. Multicast (1-to-M)

c) Convergecast (N-to-1). This is the primary WSN communication pattern where many sensors send data to one sink node. It creates the hotspot problem because nodes near the sink must relay traffic from all other nodes, depleting their batteries faster.

9.12 Summary

This chapter introduced the fundamentals of Wireless Sensor Networks:

Key Concept What You Learned
WSN Definition Spatially distributed autonomous sensors that wirelessly cooperate to monitor environments
Three-Tier Architecture Sensor field (nodes + clusters) → Gateways → Backend systems
N-to-1 Convergecast The primary communication pattern where many sensors send to one sink
Energy as Primary Constraint Radio consumes ~70% of power; duty cycling and aggregation are essential
Data Aggregation Combining readings at intermediate nodes reduces transmissions by 85-95%
Self-Healing Networks Nodes automatically route around failures via multi-hop communication

Key Takeaways:

  1. WSNs are fundamentally energy-constrained systems - every design decision should consider energy impact
  2. The convergecast pattern creates unique challenges like energy hotspots near the sink
  3. Data aggregation and duty cycling are the two most powerful techniques for extending network lifetime
  4. WSNs form the sensing layer of IoT systems, providing the “eyes and ears” of distributed monitoring

Deep Dives:

Architecture:

Energy:

Review:

Learning:

9.13 Knowledge Check

9.14 What’s Next

Topic Chapter Description
Architecture & Applications WSN Architecture and Applications Three-tier architecture, historical evolution, and application domains
WSN Implementations WSN Overview: Implementations Practical implementation with architecture, deployment, and routing
WSN Review WSN Overview: Review Comprehensive review and assessment of WSN concepts