6  IoT Glossary: G-P

Essential IoT Terms from Gateway to Publisher

Reference usability can be estimated by lookup coverage:

\[ U = \frac{N_{\text{resolved-lookups}}}{N_{\text{total-lookups}}} \]

Worked example: If learners perform 220 glossary lookups and 198 are resolved without leaving the section, usability is \(198/220=90\%\). Improving cross-references and examples should push this ratio higher.

Navigation

This is Part 2 of the IoT Glossary, covering terms G-P. See also:

6.1 Learning Objectives

After reviewing this section, you should be able to:

In 60 Seconds

This section covers IoT terminology from G through P – terms concentrated in gateway architecture, messaging protocols, network topologies, and platform design. The most referenced terms in this range are Gateway, MQTT, LPWAN, OTA, and Protocol, which appear throughout IoT connectivity and cloud integration discussions. Use search (Ctrl+F) to locate specific terms quickly.

6.2 Key Concepts

  • Gateway: An edge device that aggregates data from local sensors (BLE, Zigbee, Modbus) and forwards it to cloud platforms via internet connectivity (LTE, Ethernet), handling protocol translation and local buffering
  • MQTT (Message Queuing Telemetry Transport): A lightweight publish-subscribe protocol running over TCP/IP, designed for IoT devices with small payloads and unreliable connections – the de facto standard for device-to-cloud telemetry
  • LPWAN (Low Power Wide Area Network): A category of wireless protocols (LoRaWAN, NB-IoT, Sigfox) providing multi-kilometer range at microwatt power levels by transmitting small payloads infrequently – suited for remote sensor deployments
  • LoRaWAN: An LPWAN protocol using chirp spread spectrum modulation to achieve 2-15 km range at 0.3-50 kbps, with a star-of-stars topology and AES-128 security – widely used for smart city and agricultural IoT
  • MQTT Broker: A server that receives MQTT publications from devices, routes messages to matching topic subscribers, and manages persistent sessions and retained messages – common implementations include Mosquitto and EMQX
  • NB-IoT (Narrowband IoT): A licensed-band LPWAN standard using cellular infrastructure, providing 20+ dB penetration improvement over LTE for deep indoor sensors (meters, parking sensors) with 10-year battery life targets
  • OTA (Over-the-Air Update): A mechanism for remotely updating IoT device firmware via wireless connection without physical access, requiring secure delivery, signature verification, and rollback capability to prevent bricking devices
  • Protocol Bridge: A component that translates between incompatible IoT protocols (e.g., Modbus to MQTT, Zigbee to HTTP), enabling legacy industrial devices to connect to modern cloud platforms

6.3 For Beginners: IoT Glossary: G-P

A glossary is like a specialized dictionary for a specific subject. This section explains important IoT words from G to P - think of it as your quick reference guide when you encounter unfamiliar terms. Instead of searching through whole chapters, you can look up a word here to get a clear definition, see how it compares to similar terms, and find links to learn more. It is like having a helpful friend who explains technical terms in simple language.

  1. Define key IoT terms from G to P with technical precision
  2. Differentiate commonly confused concepts (e.g., gateway vs. router, I2C vs. SPI)
  3. Explain messaging patterns including publishers, subscribers, and topics
  4. Select appropriate protocols and hardware interfaces for different IoT scenarios

6.4 G

6.4.1 Gateway

Definition: A device that connects networks using different protocols, translating between them and enabling communication between IoT devices and external networks or cloud services.

In simple terms: A translator between different languages - connects your Zigbee sensors to your Wi-Fi network by translating between the two “languages” they speak.

Common confusions:

  • Gateway vs. router - gateways translate protocols, routers only forward packets
  • IoT gateways often combine routing, protocol translation, and edge processing

Related terms: Edge Computing, Broker, Middleware

Synonyms: IoT gateway, protocol converter, edge gateway


6.4.2 GPIO (General Purpose Input/Output)

Definition: Programmable digital pins on a microcontroller that can be configured as either inputs (reading signals) or outputs (sending signals) for interfacing with external components.

In simple terms: The connection points on a microcontroller - like USB ports on a computer, but simpler and more flexible, letting you connect sensors, LEDs, buttons, and other hardware.

Common confusions:

  • GPIO is digital only - use ADC for analog input
  • GPIO pin current limits must be respected to avoid damage

Related terms: ADC, DAC, Microcontroller, I2C

Synonyms: digital pins, I/O pins


6.5 H

6.5.1 HTTP (Hypertext Transfer Protocol)

Definition: The foundation protocol of the web, using request-response communication over TCP to transfer hypertext documents, APIs, and other resources between clients and servers.

In simple terms: The language of the web - how your browser asks for web pages and receives them, also used by many IoT devices to send data to cloud services.

Common confusions:

  • HTTP vs. HTTPS - HTTPS adds TLS encryption for security
  • HTTP/1.1 vs. HTTP/2 vs. HTTP/3 have significant performance differences

Related terms: HTTPS, REST, API, CoAP

Synonyms: web protocol


6.5.2 HTTPS (HTTP Secure)

Definition: HTTP protocol secured with TLS encryption, ensuring confidentiality, integrity, and authentication for web communications through cryptographic protection.

In simple terms: Secure HTTP - the same web protocol but wrapped in encryption so nobody can eavesdrop on or tamper with your data in transit.

Common confusions:

  • HTTPS requires certificates and adds computational overhead
  • Not all IoT devices support HTTPS due to resource constraints

Related terms: HTTP, TLS, Certificate, Encryption

Synonyms: HTTP over TLS, secure HTTP


6.6 I

6.6.1 I2C (Inter-Integrated Circuit)

Definition: A synchronous serial communication bus using two wires (data and clock) to connect multiple peripheral devices to a microcontroller, with addressing supporting up to 127 devices.

In simple terms: A shared communication line - multiple sensors and devices can talk to one microcontroller using just two wires, taking turns like people on a conference call.

Practical example: Standard I2C speeds are 100 kHz (standard mode), 400 kHz (fast mode), and 1 MHz (fast mode plus). At 400 kHz, transferring 1 byte takes approximately \((8 \text{ bits} + 1 \text{ ACK}) / 400{,}000 = 22.5 \text{ μs}\) - fast enough for most sensor readings.

Common confusions:

  • I2C vs. SPI - I2C needs fewer wires but is slower, SPI is faster but needs more wires
  • I2C addresses must be unique on each bus (some devices have configurable addresses)

Related terms: SPI, UART, GPIO, Microcontroller

Synonyms: IIC, TWI (Two-Wire Interface)


6.6.2 Idempotency

Definition: A property of operations where performing them multiple times produces the same result as performing them once, enabling safe retries without unintended side effects.

In simple terms: “Press as many times as you want” - like an elevator button that does the same thing whether you press it once or ten times.

Common confusions:

  • GET is idempotent, POST typically is not
  • Idempotency keys help make non-idempotent operations safely retriable

Related terms: At-least-once, Retry, Exactly-once

Synonyms: idempotent operation


6.6.3 InfluxDB

Definition: An open-source time series database optimized for fast, high-availability storage and retrieval of time-stamped data, commonly used for IoT metrics, monitoring, and analytics.

In simple terms: A database built for sensor data - specifically designed to handle the millions of time-stamped readings that IoT devices generate, with efficient storage and fast queries.

Common confusions:

  • InfluxDB vs. relational databases - InfluxDB optimizes for time-based queries, not relationships
  • InfluxQL vs. Flux query languages have different capabilities

Related terms: TSDB, TimescaleDB, Time Series, Telemetry

Synonyms: none common


6.7 J

6.7.1 Jitter

Definition: The variation in delay between packets arriving at a destination, causing inconsistency in data arrival times that can affect real-time applications and time-sensitive systems.

In simple terms: Inconsistent timing - like a musician who can’t keep a steady beat, packets arrive at irregular intervals even if the average delay is acceptable.

Common confusions:

  • Jitter vs. latency - latency is average delay, jitter is variation in delay
  • High jitter is problematic even with low average latency

Related terms: Latency, Bandwidth, QoS

Synonyms: packet delay variation (PDV)


6.7.2 JSON (JavaScript Object Notation)

Definition: A lightweight, human-readable data interchange format using key-value pairs and arrays, widely used for API communication and configuration in IoT systems.

In simple terms: A universal data format - a simple way to structure data that both humans can read and machines can process, like a common language everyone understands.

Common confusions:

  • JSON is text-based (larger than binary formats like CBOR or Protobuf)
  • JSON lacks native support for binary data (must encode as Base64)

Related terms: CBOR, Protobuf, Payload, Serialization

Synonyms: none common


6.8 L

6.8.1 Latency

Definition: The time delay between initiating a request and receiving a response, measured in milliseconds, representing how long data takes to travel through a system or network.

In simple terms: Response time - how long you wait between pressing a button and seeing the result, like the delay between flipping a light switch and the light turning on.

Practical example: Total latency combines multiple components: sensor sampling (1-10 ms), processing (1-5 ms), network transmission (10-100 ms for Wi-Fi, 20-200 ms for cellular), cloud processing (50-200 ms). For a cloud-connected temperature sensor: \(L_{\text{total}} = L_{\text{sense}} + L_{\text{process}} + L_{\text{network}} + L_{\text{cloud}} \approx 5 + 2 + 50 + 100 = 157 \text{ ms}\) typical.

Common confusions:

  • Low latency vs. high bandwidth - you can have fast response with limited throughput or vice versa
  • Network latency is just one component of end-to-end latency

Related terms: Bandwidth, Jitter, Edge Computing

Synonyms: delay, response time, lag


6.8.2 LoRa (Long Range)

Definition: A proprietary spread spectrum modulation technique derived from chirp spread spectrum (CSS) technology, enabling long-range, low-power wireless communication for IoT devices.

In simple terms: A radio technology for distance - sends data over miles using very little power, perfect for sensors in remote locations that need to communicate without Wi-Fi or cellular coverage.

Common confusions:

  • LoRa vs. LoRaWAN - LoRa is the physical layer modulation, LoRaWAN is the network protocol on top
  • LoRa is proprietary to Semtech, not an open standard

Related terms: LoRaWAN, NB-IoT, LTE-M

Synonyms: LoRa modulation, CSS


6.8.3 LoRaWAN

Definition: An open network protocol specification built on LoRa physical layer, defining the network architecture, security, and communication protocols for wide-area IoT deployments.

In simple terms: The complete network system using LoRa - includes not just the radio technology but the whole setup of gateways, servers, and security that creates a working IoT network.

Common confusions:

  • LoRaWAN vs. LoRa - LoRaWAN is the complete protocol stack, LoRa is just the modulation
  • Three device classes (A, B, C) offer different latency/power tradeoffs

Related terms: LoRa, NB-IoT, LPWAN, Gateway

Synonyms: Long Range Wide Area Network


6.8.4 LPWAN (Low Power Wide Area Network)

Definition: A type of wireless network designed to allow long-range communication at low bit rates among connected devices, optimized for battery-powered IoT applications.

In simple terms: Networks for simple, long-range devices - designed for sensors that send small amounts of data over long distances while running on batteries for years.

Common confusions:

  • LPWAN is a category, not a specific technology (includes LoRaWAN, Sigfox, NB-IoT)
  • LPWAN trades bandwidth for range and power efficiency

Related terms: LoRaWAN, NB-IoT, LTE-M, Sigfox

Synonyms: low power network, wide area IoT


6.8.5 LTE-M (LTE for Machines)

Definition: A cellular IoT technology based on LTE networks, providing moderate bandwidth, mobility support, and voice capability for IoT devices requiring higher data rates than NB-IoT.

In simple terms: Cellular for IoT with more features - uses existing cell towers to connect IoT devices, with enough bandwidth for things like wearables that need more data than simple sensors.

Common confusions:

  • LTE-M vs. NB-IoT - LTE-M has higher bandwidth and mobility support, NB-IoT is simpler and lower power
  • LTE-M supports VoLTE for voice applications

Related terms: NB-IoT, LPWAN, Cellular IoT

Synonyms: Cat-M1, eMTC


6.9 M

6.9.1 Matter

Definition: A unified, IP-based connectivity standard for smart home devices, developed by the Connectivity Standards Alliance to enable interoperability across ecosystems (Apple, Google, Amazon).

In simple terms: The universal smart home language - finally allows devices from different brands to work together seamlessly, like a translator that lets Apple, Google, and Amazon devices all communicate.

Common confusions:

  • Matter doesn’t replace Wi-Fi or Thread - it runs over them as transport
  • Matter certification ensures interoperability but doesn’t guarantee all features work across platforms

Related terms: Thread, Zigbee, Wi-Fi

Synonyms: Project CHIP (original name)


6.9.2 Mesh

Definition: A network topology where devices connect directly to multiple other devices, creating redundant paths that improve reliability and extend coverage through multi-hop routing.

In simple terms: A web of connections - every device can talk to multiple neighbors and messages hop from device to device, so if one path fails, data finds another route.

Common confusions:

  • Mesh vs. star topology - mesh has multiple paths, star has single central connection
  • Mesh increases reliability but adds complexity and latency

Related terms: Star Topology, Routing, Zigbee, Thread

Synonyms: mesh network, mesh topology


6.9.3 Metadata

Definition: Data that provides information about other data, such as timestamps, device identifiers, data types, units, and quality indicators that contextualize the primary payload.

In simple terms: Information about information - the label on a package that tells you what’s inside, when it was sent, and where it came from, without being the actual contents.

Common confusions:

  • Metadata vs. payload - metadata describes, payload contains actual values
  • Metadata is essential for data management but adds overhead

Related terms: Payload, Timestamp, Schema

Synonyms: meta-information, data context


6.9.4 Microcontroller

Definition: A compact integrated circuit containing a processor, memory, and programmable I/O peripherals, designed for embedded applications and IoT devices with specific control functions.

In simple terms: A tiny computer on a chip - contains everything needed to run simple programs and control hardware, perfect for IoT devices that need to be small, cheap, and power-efficient.

Common confusions:

  • Microcontroller vs. microprocessor - microcontrollers include memory and peripherals on-chip
  • Popular IoT microcontrollers include ESP32, STM32, Arduino-based chips

Related terms: SoC, GPIO, ADC

Synonyms: MCU, embedded controller


6.9.5 Microservices

Definition: An architectural style that structures an application as a collection of loosely coupled, independently deployable services, each implementing specific business capabilities.

In simple terms: Building with LEGO blocks - instead of one big application, break it into many small, independent services that can be developed, deployed, and scaled separately.

Common confusions:

  • Microservices vs. monolith - microservices add complexity but improve scalability and maintainability
  • Microservices require robust communication and orchestration

Related terms: API, Serverless, Platform

Synonyms: microservice architecture


6.9.6 Middleware

Definition: Software that sits between the operating system and applications, providing common services like messaging, authentication, API management, and data transformation.

In simple terms: The glue between systems - handles the complicated work of connecting different parts of a system so application developers can focus on business logic.

Common confusions:

  • Middleware vs. API - middleware provides services, APIs provide access to them
  • IoT middleware often includes message brokers and protocol adapters

Related terms: Broker, API, Gateway

Synonyms: integration layer, message-oriented middleware


6.9.7 Modbus

Definition: A serial communication protocol originally developed for programmable logic controllers (PLCs), now widely used in industrial IoT for connecting electronic devices.

In simple terms: The industrial standard language - an old but reliable way for factory equipment to communicate, like the standard railroad track gauge that ensures all trains can run on the same rails.

Common confusions:

  • Modbus RTU (serial) vs. Modbus TCP (Ethernet) have different physical layers
  • Modbus is simple but lacks built-in security

Related terms: OPC-UA, Industrial IoT, Gateway

Synonyms: Modbus Protocol


6.9.8 MQTT (Message Queuing Telemetry Transport)

Definition: A lightweight publish-subscribe messaging protocol designed for constrained devices and low-bandwidth, high-latency networks, using a broker to route messages between clients.

In simple terms: The postal service for IoT - devices send messages to a central post office (broker) addressed to topics, and anyone subscribed to those topics receives the messages.

Common confusions:

  • MQTT doesn’t actually use message queuing despite its name
  • MQTT 3.1.1 vs. MQTT 5 have significant feature differences

Related terms: Broker, Topic, Publisher, Subscriber, QoS

Synonyms: none common


6.9.9 MTU (Maximum Transmission Unit)

Definition: The largest size of a protocol data unit that can be transmitted in a single network transaction, determining when packets must be fragmented for transmission.

In simple terms: The maximum package size - like postal limits on how big a box can be, networks have maximum sizes for data chunks before they must be split.

Practical example: Common MTU values - Ethernet: 1500 bytes, 6LoWPAN: 127 bytes, LoRaWAN: 51-242 bytes (depending on data rate). Overhead reduces usable payload: for 6LoWPAN with IPv6 (40-byte header) and UDP (8-byte header), usable payload = \(127 - 40 - 8 = 79 \text{ bytes}\) maximum.

Common confusions:

  • MTU varies by network type (Ethernet 1500 bytes, 6LoWPAN much smaller)
  • MTU mismatch can cause connectivity issues

Related terms: Packet, Frame, 6LoWPAN

Synonyms: maximum packet size


6.10 N

6.10.1 NB-IoT (Narrowband IoT)

Definition: A cellular IoT technology using a narrow 200kHz bandwidth, providing excellent coverage, low power consumption, and lower cost for simple IoT devices requiring infrequent data transmission.

In simple terms: Cellular for simple sensors - uses existing cell towers to connect basic IoT devices that only need to send small amounts of data occasionally, with amazing battery life.

Common confusions:

  • NB-IoT vs. LTE-M - NB-IoT is simpler and lower power but has less bandwidth and no mobility
  • NB-IoT can work in-band, guard-band, or standalone deployments

Related terms: LTE-M, LPWAN, LoRaWAN

Synonyms: LTE Cat-NB1, Cat-NB2


6.11 O

6.11.1 OAuth

Definition: An open authorization framework that enables secure delegated access, allowing users to grant third-party applications limited access to their resources without sharing credentials.

In simple terms: “Sign in with Google” for machines - lets you give an app permission to access your data without giving it your password, like giving a valet your car key but not your house key.

Common confusions:

  • OAuth 2.0 vs. OAuth 1.0 are significantly different (2.0 is not backward compatible)
  • OAuth is for authorization, not authentication (OpenID Connect adds authentication)

Related terms: Authentication, Authorization, Token

Synonyms: OAuth 2.0


6.11.2 OPC-UA (OPC Unified Architecture)

Definition: A platform-independent, service-oriented architecture providing secure, reliable data exchange for industrial automation, supporting complex data models and standardized communication.

In simple terms: The modern industrial communication standard - enables factory machines from different vendors to share data securely, with rich information models and enterprise-grade security.

Common confusions:

  • OPC-UA vs. OPC Classic - UA is platform-independent, Classic was Windows-only
  • OPC-UA includes security and information modeling that Modbus lacks

Related terms: Modbus, Industrial IoT, Middleware

Synonyms: UA, IEC 62541


6.12 P

6.12.1 Packet

Definition: A unit of data at the network layer (Layer 3) containing header information (addresses, protocol) and payload, routed independently across networks toward its destination.

In simple terms: A data envelope with an address - contains the actual message plus delivery information, like a letter with destination address that postal workers use for routing.

Common confusions:

  • Packet vs. frame - packets are Layer 3 (IP), frames are Layer 2 (Ethernet)
  • Packets may be fragmented if larger than MTU

Related terms: Frame, Payload, Routing

Synonyms: datagram, IP packet


6.12.2 Payload

Definition: The actual data being transported within a message or packet, excluding headers, metadata, and protocol overhead - the meaningful content that applications process.

In simple terms: The actual cargo - in a delivery truck (packet), the payload is the goods being delivered, not the truck itself or the shipping labels.

Common confusions:

  • Payload vs. message - payload is the content portion, message includes headers/metadata
  • Payload format varies (JSON, CBOR, Protobuf, binary)

Related terms: JSON, CBOR, Packet, Metadata

Synonyms: data payload, message body, content


6.12.3 Platform

Definition: A comprehensive software environment providing infrastructure services for IoT applications, including device management, data ingestion, storage, analytics, and visualization.

In simple terms: A complete IoT toolkit - provides all the services you need to build IoT applications without starting from scratch, like a fully equipped kitchen versus building your own stove.

Common confusions:

  • Platform vs. protocol - platforms are complete solutions, protocols are communication standards
  • Examples: AWS IoT, Azure IoT, Google Cloud IoT, ThingsBoard

Related terms: Cloud, Middleware, Digital Twin

Synonyms: IoT platform, cloud platform


6.12.4 Protobuf (Protocol Buffers)

Definition: A language-neutral, platform-neutral binary serialization format developed by Google, using predefined schemas to create compact, efficient data structures for communication.

In simple terms: Efficient data packing with blueprints - you define the structure once (schema), then data is packed tightly according to that blueprint, saving space and processing time.

Common confusions:

  • Protobuf requires schema definition upfront (unlike JSON which is self-describing)
  • Protobuf is more efficient than JSON but less human-readable

Related terms: JSON, CBOR, Schema, Serialization

Synonyms: Protocol Buffers, pb


6.12.5 Publisher

Definition: A client in publish-subscribe messaging that sends messages to topics, without knowledge of or direct connection to the subscribers who will receive those messages.

In simple terms: A broadcaster - sends messages into the system addressed to topics, not caring who’s listening, like a radio station that transmits without knowing who has tuned in.

Common confusions:

  • Publisher vs. producer - essentially the same concept
  • Publishers are decoupled from subscribers (neither knows about the other)

Related terms: Subscriber, Topic, Broker, MQTT

Synonyms: producer, sender, message source


Scenario: Capstone project needs to choose between I2C and SPI for connecting 5 sensors to ESP32. Both protocols work, but which is better?

Glossary lookup (I2C): > “A synchronous serial communication bus using two wires (data and clock)… supporting up to 127 devices.”

Cross-reference check → “I2C vs. SPI - I2C needs fewer wires but is slower”

Compare: SPI: > “Synchronous serial interface using separate lines for data in/out and clock… faster but requires more wires”

Decision table (derived from glossary):

Factor I2C SPI Winner
Wires needed 2 (shared bus) 4 per device (20 wires for 5 sensors!) I2C
Speed 400 kHz standard 10+ MHz SPI (but not needed)
Complexity Simple addressing Manual chip select I2C
Use case fit Multiple low-speed sensors Single high-speed device I2C

Decision: I2C for this project (5 sensors sharing 2 wires vs. 20 wires for SPI).

Key Insight: The glossary’s comparison note (“I2C vs. SPI”) pointed to the key trade-off. For multiple low-speed sensors, I2C’s shared bus advantage outweighs SPI’s speed.

Comparison Needed Glossary Strategy Result
Messaging protocols Look up MQTT → check “Common confusions: MQTT vs. CoAP” MQTT = reliable, CoAP = lightweight
Cellular IoT Look up NB-IoT → check “Related: LTE-M” NB-IoT = stationary, LTE-M = mobile
Hardware interfaces Look up GPIO → explore ADC, DAC, I2C, SPI Understand full interface options
Network architectures Look up Edge → check “Related: Fog, Cloud” Edge vs. fog vs. cloud continuum

Effective protocol comparison workflow:

  1. List candidate protocols (e.g., MQTT, CoAP, HTTP)
  2. Look up each in glossary
  3. Read “Common confusions” for comparisons
  4. Follow “Related terms” for alternatives
  5. Create comparison table from glossary info
  6. Jump to detailed chapters for final decision

Key Insight: The glossary provides high-level comparisons (“X vs. Y”) that quickly narrow choices. Detailed chapters provide implementation guidance for the winner.

Common Mistake: Ignoring “Synonyms” When Searching for Solutions

The Mistake: Googling “IoT message broker” finds nothing useful. Glossary shows synonym “MQTT broker” - suddenly thousands of tutorials appear.

Why It Happens: Different communities use different terminology. Academic papers say “publish/subscribe middleware,” industry blogs say “message broker,” hobbyist forums say “MQTT server.”

Real examples:

Your Search Term Gets Poor Results Glossary Synonym Gets Better Results
“IoT platform” Vague marketing “Cloud platform”, “Middleware” Specific architectures
“Serial protocol” Too general “UART”, “I2C”, “SPI” Hardware-specific docs
“Message confirmation” Unclear “Acknowledgment (ACK)” Protocol documentation
“Request authentication” Broad “OAuth”, “Token” Security implementations

The Fix: Check “Synonyms” section of glossary terms, use them in searches: 1. Look up concept in glossary 2. Note all synonyms listed 3. Search using each synonym 4. Different terms unlock different documentation

Example: Searching for “microcontroller programming”:

  • Glossary: MCU synonyms = “microcontroller”, “embedded controller”, “MCU”
  • Expanded search: “MCU programming”, “embedded programming”, “firmware development”
  • Better results from diverse sources

Key Insight: The glossary’s synonym section is your Rosetta Stone for navigating IoT’s terminology chaos across academic, industry, and hobbyist communities.

Protocol families connect: HTTP → HTTPS (add TLS), LoRa → LoRaWAN (add network layer), MQTT relies on TCP while CoAP uses UDP.

Hardware interfaces trade off features:

  • GPIO: Simple digital I/O, many pins available
  • I2C: Shared bus (2 wires), multiple devices, slower speed
  • SPI: Dedicated per device (4+ wires), faster, parallel operation

Messaging patterns emerge: Publisher → Broker → Subscriber (MQTT), with Topics for routing and Filters for selection. Payload format (JSON, Protobuf, CBOR) affects efficiency.

Network architecture layers: Gateway bridges protocols, Middleware provides services, Platform offers complete solution, Microservices enable modularity.

Glossary navigation:

Referenced chapters (examples from terms covered): - MQTT Protocol - Publisher, subscriber, broker, topics - LoRaWAN - LoRa and LoRaWAN details - Hardware Interfaces - GPIO, I2C, SPI

External resources:

6.13 Mid-Section Knowledge Check

Common Pitfalls

MQTT ‘broker’ and ‘server’ are synonymous – both refer to the message routing component. The term ‘server’ is sometimes used in older documentation. What is NOT the broker is the MQTT client (both publishers and subscribers are clients). Calling the broker a ‘server’ is fine but confusing it with an HTTP API server leads to incorrect architecture diagrams.

LoRa (lowercase) is the physical layer modulation technique – a chirp spread spectrum radio. LoRaWAN is the network protocol specification built on top of LoRa, defining the MAC layer, network server architecture, and security. You can use LoRa modulation without LoRaWAN (e.g., proprietary point-to-point links) but all public LoRa networks use LoRaWAN.

IoT gateways do far more than protocol translation. Production gateways buffer sensor data during cloud connectivity loss, perform local edge analytics to reduce bandwidth, validate incoming sensor data before forwarding, and manage local device security certificates. Treating gateways as dumb protocol bridges leads to systems that fail during internet outages and have no local intelligence.

6.14 Summary

This section covered 30 essential IoT terms from G through P:

Category Terms Examples
Protocols 8 HTTP, HTTPS, LoRa, LoRaWAN, MQTT, Modbus, OPC-UA
Networking 6 Gateway, Latency, LPWAN, LTE-M, Mesh, NB-IoT
Hardware 5 GPIO, I2C, Microcontroller, MTU, Packet
Data 5 InfluxDB, JSON, Metadata, Payload, Protobuf
Architecture 4 Matter, Microservices, Middleware, Platform
Messaging 2 OAuth, Publisher
Reliability 2 Idempotency, Jitter

6.15 What’s Next

If you want to… Read this
Look up IoT terms from A through F Glossary A-F
Look up IoT terms from Q through Z Glossary Q-Z
Review the complete unified glossary Full IoT Glossary
Apply MQTT and gateway concepts in capstone projects Capstone Projects
Deep dive into MQTT protocol details MQTT Fundamentals