zediot regular nolink
ZedIoT Logo

Bluetooth BLE in IoT: An In-depth Look at Broadcast, Transparent Transmission, and MESH Networks

This article aims to delve into the three primary BLE connection methods: Broadcast Mode, Transparent Transmission Mode, and MESH Networking. By thoroughly analyzing the principles, application scenarios, technical specifications of each method, and how they connect with gateways, smartphones, computers, and other devices, we hope to help readers better understand the potential of BLE and choose the most suitable connection method for their specific projects.

Since its inception in 1994, Bluetooth technology has become a leading standard for short-range wireless communication. Traditional Bluetooth (Bluetooth Classic) was primarily used for high data rate applications such as audio transmission and file sharing. However, with the rapid development of the Internet of Things (IoT), there has been a growing demand for low-power, low-cost, and low-complexity wireless communication solutions. To meet this demand, the Bluetooth Special Interest Group (SIG) released the Bluetooth 4.0 standard in 2010, introducing Bluetooth Low Energy (BLE) technology.

The advent of BLE has made it possible to power various battery-operated devices, such as wearables, wireless sensors, and smart home gadgets. As of 2021, over 4 billion devices worldwide support BLE, and this number is expected to continue growing in the coming years.

Bluetooth BLE Fundamentals

How BLE Works

Frequency Bands and Channels

BLE operates in the 2.400 GHz to 2.4835 GHz Industrial, Scientific, and Medical (ISM) band, sharing the spectrum with traditional Bluetooth and Wi-Fi. The BLE spectrum is divided into 40 channels, each with a bandwidth of 2 MHz:

  • 3 channels (Channels 37, 38, 39) are used for broadcasting and scanning, known as broadcast channels.
  • 37 channels are used for data transmission, known as data channels.

Channel allocation is as follows:

Channel TypeNumber of ChannelsFrequency Range (GHz)
Broadcast32.402, 2.426, 2.480
Data372.402 - 2.480 (2 MHz spacing)

Communication Mechanism

BLE uses Gaussian Frequency Shift Keying (GFSK) modulation, supporting data rates of 1 Mbps and 2 Mbps (available in BLE 5.0 and above).

The communication process involves the following steps:

  1. Device Role Assignment: BLE devices are categorized as Central (master) and Peripheral (slave).
  2. Broadcasting and Scanning: Peripheral devices send out broadcast packets via broadcast channels, while Central devices scan these channels to discover peripherals.
  3. Connection Establishment: The Central device sends a connection request to the Peripheral, and both establish a connection.
  4. Data Transmission: Once connected, data is exchanged over data channels using the Generic Attribute Profile (GATT) protocol.

GATT Protocol

GATT defines a hierarchical data structure of Services and Characteristics to organize and describe data:

  • Service: A collection of related characteristics representing a device's functionality.
  • Characteristic: A value used to contain a single data point along with properties and descriptors.
  • Descriptor: Additional information about a characteristic, such as units or ranges.

Advantages of BLE

Low Power Consumption

BLE is optimized for low power consumption through:

  • Short Packet Transmission: Reduces transmission time and energy use.
  • Intermittent Operation: Devices can enter sleep mode when not transmitting data.
  • Quick Connection and Disconnection: Establishing and terminating connections take minimal time, usually within 3 ms.

Tests have shown that BLE devices consume only 1/10 to 1/20 of the power of traditional Bluetooth devices. For example, a CR2032 coin cell battery can power a BLE device for 1 to 2 years.

High Compatibility

With the widespread adoption of smartphones and tablets, almost all modern mobile devices support BLE. This provides developers with a broad user base without requiring additional hardware investments for connectivity.

Broadcast Mode

Concept and Principles

Broadcast Mode is the most fundamental communication method in BLE. Peripheral devices send out broadcast packets via broadcast channels, which Central devices can scan and receive. The structure of a broadcast packet is as follows:

FieldLength (Bytes)Description
Preamble1Synchronizes the receiver
Access Address4Fixed value of 0x8E89BED6
PDU2-39Contains the payload
CRC3Ensures data integrity

The Protocol Data Unit (PDU) contains the actual broadcast data. The maximum length of a broadcast packet is 31 bytes, which can be extended to 62 bytes using a Scan Response.

Application Scenarios

Beacons

Beacon technology leverages BLE's broadcasting capabilities to periodically send out a unique ID or data. Common Beacon protocols include iBeacon (Apple) and Eddystone (Google). Application scenarios include:

  • Indoor Positioning: By combining signal strengths (RSSI) from multiple Beacons, devices can achieve positioning accuracy within 2 meters.
  • Information Push: In malls, when customers approach a product area, relevant promotional information is pushed to their devices.

Location Services

In venues like museums and airports, deploying Beacons can provide users with navigation and location-based services.

Simple Data Broadcasting

Some sensor devices, such as temperature and humidity monitors, can periodically broadcast measurement data for nearby devices to receive.

Advantages and Disadvantages

Advantages

  • Low Power Consumption: No need to maintain a connection; peripherals can set longer broadcast intervals (e.g., 1000 ms) to further reduce power use.
  • No Pairing Required: Receiving devices do not need to pair with broadcasters, enhancing user experience.
  • Simultaneous Reception by Multiple Devices: A single broadcast packet can be received by multiple devices, suitable for mass information dissemination.

Disadvantages

  • Limited Data Volume: The payload of a single broadcast packet is small, unsuitable for large data transfers.
  • No Two-Way Communication: Cannot achieve data feedback and acknowledgment, leading to potential data loss.
  • Low Security: Broadcast information is public and easily intercepted, making it unsuitable for transmitting sensitive data.

Technical Specifications

  • Broadcast Interval: Configurable between 20 ms and 10.24 s. Longer intervals reduce power consumption but slow down data updates.
  • Data Transfer Rate: Due to limitations in data volume and broadcast interval, the actual rate is low, typically in the hundreds of bps.

Example

Case Study: Beacon Applications in Shopping Malls

A large shopping mall deploys hundreds of Beacon devices on each floor, broadcasting their IDs and location information every 500 ms. Customers' smartphone apps can receive these broadcasts, display their current location in real-time, and recommend nearby stores and promotions.

Technical Details
  • Beacon Devices: Utilize low-power BLE chips powered by CR2032 coin cell batteries, with a lifespan of over 1 year.
  • Broadcast Content: Includes mall ID, floor information, store numbers, etc., totaling less than 31 bytes.
  • Mobile App: Runs in the background to scan and parse Beacon broadcast packets, updating the user interface accordingly.
Data Analysis
  • Positioning Accuracy: By receiving RSSI values from multiple Beacons and using triangulation, positioning accuracy can reach 1-3 meters.
  • Power Consumption Evaluation: With a broadcast interval of 500 ms, the device's average current is approximately 20 μA. A CR2032 battery (about 225 mAh capacity) can support the device for approximately 1.5 years.

Transparent Transmission Mode

Concept and Principles

Transparent Transmission Mode is implemented based on BLE's Generic Attribute Profile (GATT), allowing devices to establish a connection and perform two-way data transmission. It is commonly used for reliable, real-time data exchange, such as sensor data collection and device control.

GATT Architecture

GATT defines a standard framework for organizing and transmitting data, structured as:

  • Service: A collection of related characteristics representing a functional module of the device.
  • Characteristic: Specific data items, including properties, values, and descriptors.
  • Descriptor: Additional information about a characteristic, such as units or permissible ranges.

Connection Process

  1. Device Discovery: The Central device scans broadcast channels to discover peripherals.
  2. Connection Establishment: The Central device sends a connection request to the Peripheral.
  3. Service Discovery: The Central device reads the Peripheral's list of services and characteristics.
  4. Data Transmission: The Central and Peripheral devices perform read/write operations to exchange data.

Application Scenarios

Sensor Data Transmission

  • Heart Rate Monitors: Transmit real-time heart rate data to mobile apps for user viewing and recording.
  • Environmental Sensors: Real-time collection and monitoring of data such as temperature, humidity, and air pressure.

Device Control

  • Smart Home Control: Mobile apps control smart bulbs, curtains, air conditioners, etc., via BLE.
  • Robotics and Drones: Real-time control of robotic movements and status monitoring.

Advantages and Disadvantages

Advantages

  • High Reliability: Connection-based communication supports acknowledgment and retransmission mechanisms.
  • Two-Way Communication: Enables command delivery and data feedback for complex interactions.
  • Strong Security: Supports encryption and authentication mechanisms to protect data transmission.

Disadvantages

  • Higher Power Consumption: Maintaining a connection requires periodic communication, increasing power use.
  • Pairing Required: Initial connection requires pairing and bonding, adding complexity.
  • Limited Connections: BLE Peripherals typically can connect to only one Central device.

Technical Specifications

  • Connection Interval: Usually between 7.5 ms and 4 s; shorter intervals offer higher data rates but consume more power.
  • Data Transfer Rate: Theoretical maximum of 1 Mbps (BLE 4.x) or 2 Mbps (BLE 5.x), but actual rates are typically tens of kbps due to protocol overhead and environmental factors.
  • Connection Latency: Connection establishment time is approximately 3 ms to 10 ms.

Example

Case Study: Data Synchronization of Smart Wristbands

A smart wristband connects to a smartphone via BLE to synchronize fitness data and health metrics in real-time.

Technical Details
  • Services and Characteristics:
  • Heart Rate Service:
    • Heart Rate Measurement: Notification type, sends real-time heart rate values.
  • Battery Service:
    • Battery Level: Read type, reports the wristband's remaining battery life.
  • Data Transmission Workflow:
  1. The mobile app scans and discovers the wristband.
  2. Establishes a connection and discovers services.
  3. Subscribes to notifications for heart rate measurements.
  4. The wristband periodically sends heart rate data, which the phone receives and displays.
Data Analysis
  • Power Consumption Evaluation: With a connection interval of 50 ms, the wristband's average current is about 1 mA. Using a 110 mAh lithium battery, the device can last approximately 110 hours.
  • Data Rate: Heart rate data packets are about 2 bytes; sending 20 times per second results in a data rate of 320 bps.

MESH Networking

Concept and Principles

BLE MESH networking is a many-to-many topology that allows a large number of devices to communicate with each other. It is based on mechanisms like advertisement packet relaying and on-demand routing to propagate messages throughout the network.

Network Architecture

  • Node: A device within the network, such as sensors or controllers.
  • Element: A functional entity within a node; a node may contain multiple elements.
  • Model: Defines specific message formats and behaviors, such as switching models or sensor models.
  • Address: Includes unicast, group, and virtual addresses for message routing.

Communication Mechanism

  • Publish/Subscribe Model: Nodes can publish messages to specific addresses; other nodes that subscribe to these addresses will receive the messages.
  • Message Relaying: Nodes can relay received messages to achieve multi-hop transmission.

Application Scenarios

Smart Home

  • Lighting Control: Multiple light fixtures form a MESH network, allowing unified or grouped control by the user.
  • Security Systems: Door/window sensors and alarms form a network for linked alerts.

Industrial Automation

  • Equipment Monitoring: Industrial equipment status and data are transmitted to a control center via the MESH network.
  • Environmental Monitoring: Sensor networks monitor parameters like temperature, humidity, and gas concentrations.

Advantages and Disadvantages

Advantages

  • Wide Coverage: Multi-hop transmission extends network coverage beyond the range of a single device.
  • Strong Scalability: Networks can easily add new nodes, supporting hundreds to tens of thousands of devices.
  • High Reliability: Features self-organizing and self-healing capabilities; the network automatically adjusts routes when a node fails.

Disadvantages

  • Complex Implementation: Network configuration, management, and debugging require advanced technical expertise.
  • Higher Latency: Multi-hop transmission increases communication delays, unsuitable for real-time applications.
  • Increased Power Consumption: Nodes frequently receive and relay messages, consuming more power than standard BLE devices.

Technical Specifications

  • Network Capacity: Theoretically supports up to 32,767 nodes.
  • Message TTL (Time to Live): Default value is 127, indicating a message can be relayed up to 127 times.
  • Data Rate: Actual rates are typically in the kilobits per second range due to protocol overhead and multi-hop transmission.

Example

Case Study: Lighting System in Smart Buildings

A smart building utilizes a BLE MESH network to centrally control and manage all lighting fixtures.

Technical Details
  • Node Configuration:
  • Lighting Nodes: Equipped with on/off and dimming functions, subscribing to relevant group addresses.
  • Control Panels: Publish control commands to group addresses for area or global control.
  • Communication Workflow:
  1. The user selects the desired area or fixture on the control panel.
  2. The control panel publishes on/off or dimming commands to the relevant group address.
  3. Lighting nodes that subscribe to that address receive the commands and execute actions.
  4. Lighting nodes can provide status feedback for system monitoring.
Data Analysis
  • Latency Evaluation: Assuming a network depth of 5 hops, with a per-hop delay of about 30 ms, the total delay is approximately 150 ms, which is acceptable to users.
  • Power Consumption Evaluation: Lighting nodes are powered by mains electricity, so power consumption is not a concern. Control panels can use battery power, with standby currents of around hundreds of μA.

Comparison of the Three Connection Methods

Performance Comparison

MetricBroadcast ModeTransparent Transmission ModeMESH Networking
Power ConsumptionLowestHighModerate to High
Data RateLow (hundreds of bps)Moderate (tens of kbps)Low (kilobits per sec)
Connection CountUnlimitedOne-to-oneMany-to-many
LatencyLowestLowHigh
ComplexityLowModerateHigh
SecurityLowHighHigh

Suitability Analysis

  • Broadcast Mode: Suitable for low-power, small data volume transmission without the need for two-way communication, such as Beacon positioning and simple information broadcasting.
  • Transparent Transmission Mode: Ideal for applications requiring reliable data transmission and two-way communication, such as sensor data collection and device control.
  • MESH Networking: Best for scenarios requiring wide-area, multi-node communication, like smart homes and industrial automation.

Connecting with Gateways, Smartphones, and Computers

Broadcast Mode Connections

  • Interaction with Smartphones: Mobile apps scan and receive broadcast packets without pairing. For example, Beacons in malls push information to customers' phones.

Transparent Transmission Mode Connections

  • Pairing and Data Transmission with Smartphones and Computers:
  • Pairing Process: Users select the target device from a list and perform pairing and bonding.
  • Data Transmission: Applications handle data read/write and notifications.
  • Connecting with Gateways: Peripheral devices establish BLE connections with gateways, which then upload data to servers via Wi-Fi or Ethernet.

MESH Network Connections

  • Internet Connectivity via Gateways:
  • Gateway Role: Acts as a node within the MESH network with both BLE and IP network interfaces.
  • Data Transmission: Messages within the MESH network are forwarded to cloud servers through the gateway for remote monitoring and control.
  • Indirect Communication with Smartphones:
  • Configuration and Management: Mobile apps connect to a node in the network via BLE to send configuration commands.
  • Control and Monitoring: Smartphones can subscribe to specific group addresses to receive messages from the MESH network.

Application Areas

Consumer Electronics

Wearable Devices

Example Products:

  • Apple Watch: Utilizes BLE's Transparent Transmission Mode to establish a stable connection with the iPhone, enabling message notifications, health data synchronization, and more. It contains various sensors like heart rate monitors, accelerometers, and gyroscopes, transmitting collected data to mobile apps for processing and display. Technical Specifications:
  • Connection Interval: Typically set around 30 ms to ensure real-time data transmission.
  • Data Transfer Rate: Actual rates can reach tens of kbps, sufficient for high-frequency data transmission.
  • Fitbit Smart Bands: Connect to smartphones via BLE to synchronize steps, heart rate, sleep data, etc. Users can view detailed health reports through the mobile app. Technical Specifications:
  • Battery Life: Thanks to BLE's low power consumption, battery life can last 5-7 days.
  • Data Synchronization Frequency: Users can set the frequency, opting for real-time synchronization or periodic updates to conserve power.

Smart Home

Example Products:

  • Philips Hue Smart Bulbs: Utilize BLE MESH networking for centralized control of home lighting. Users can adjust color, brightness, and set timers via a mobile app. Technical Specifications:
  • Network Capacity: A single Hue bridge can support up to 50 bulbs, suitable for homes and small offices.
  • Response Time: Multi-hop transmission delays are kept under 100 ms, making latency virtually unnoticeable.
  • August Smart Locks: Communicate directly with smartphones using BLE's Transparent Transmission Mode. Users can lock/unlock doors and check lock status via the mobile app. Technical Specifications:
  • Security: Employs AES 128-bit encryption to ensure data security.
  • Power Management: Battery life is approximately 3-6 months, with low-battery alerts for users.

Industrial Applications

Industrial Sensor Networks

Example Products:

  • Digi XBee3 BLE Modules: Support BLE MESH networking, commonly used for wireless connections in industrial sensors. Capable of monitoring parameters like temperature, humidity, and vibration for predictive maintenance. Technical Specifications:
  • Communication Range: Up to 200 meters in industrial environments.
  • Durability: Designed to meet industrial standards, operating temperatures range from -40°C to 85°C.

Healthcare

Remote Medical Devices

Example Products:

  • Dexcom G6 Continuous Glucose Monitoring System: Uses BLE's Transparent Transmission Mode to send patients' glucose data to smartphones or receivers in real-time, aiding in patient and physician monitoring and management. Technical Specifications:
  • Data Frequency: Updates glucose data every 5 minutes.
  • Sensor Lifespan: Each sensor lasts for 10 days.
  • Omron Heart Rate Monitors: Connect to smartphones via BLE, allowing users to view real-time heart rate and historical data through an app. Technical Specifications:
  • Data Accuracy: Heart rate measurement accuracy within ±5 bpm.
  • Battery Life: Rechargeable batteries with approximately 48 hours of operation.

Retail and Marketing

Beacon Technology Applications

Example Products:

  • Estimote Beacons: Widely used in retail, museums, airports, etc., to push location-based information and services to users' smartphones via Broadcast Mode. Technical Specifications:
  • Broadcast Range: Adjustable, up to 70 meters.
  • Battery Life: Uses lithium batteries with up to 3 years of lifespan.
  • Kontakt.io Beacons: Offer various Beacon devices supporting asset tracking and personnel location. Technical Specifications:
  • Positioning Accuracy: Indoor positioning accuracy of 1-3 meters.
  • Management Platform: Provides a cloud management platform for remote device monitoring and configuration.

Case Studies

Smart Logistics Tracking System

A logistics company enhances cargo transparency and security by employing BLE Beacon devices. Each cargo container is equipped with a Beacon that broadcasts location and status data. Transport vehicles and warehouses are equipped with BLE gateways that receive this information in real-time and upload it to a cloud management platform.

Technical Implementation:

  • Device Configuration: Low-power Beacon devices with battery life exceeding 1 year.
  • Data Transmission: Broadcast interval set to 5 seconds to balance power consumption and data updates.
  • System Integration: BLE gateways connect to the cloud via 4G or Ethernet, supporting large-scale device access and management.

Benefits Analysis:

  • Improved Efficiency: Real-time cargo tracking optimizes routing and scheduling.
  • Cost Reduction: Decreases time spent on manual inventory and searches, lowering operational costs.
  • Enhanced Security: Immediate alerts for anomalies (e.g., high temperature, vibration) reduce cargo damage risks.

Smart Building Control Solutions

A modern office building utilizes a BLE MESH network to connect various subsystems, including lighting, HVAC, security, and elevators. All devices are integrated into a unified management platform for intelligent and automated control.

Technical Implementation:

  • Network Architecture: Employs a layered MESH network with core, aggregation, and access layers to ensure reliability and scalability.
  • Device Types: Includes sensor nodes, actuator nodes, and control nodes, totaling over 1,000 devices.
  • Data Processing: Combines edge computing with cloud computing to enhance data processing efficiency and real-time capabilities.

Benefits Analysis:

  • Energy Savings: Intelligent lighting and HVAC control reduce energy consumption by over 30%.
  • Increased Comfort: Automatically adjusts equipment based on personnel distribution and environmental conditions to improve comfort.
  • Security Management: Real-time monitoring of security devices allows for rapid response to anomalies.

Conclusion

Summary of Each Connection Method's Characteristics and Application Scenarios

  • Broadcast Mode: Ideal for low-power, small data volume transmission without two-way communication, such as Beacon positioning and simple information broadcasting. Advantages include low power consumption and simplicity; disadvantages are limited data volume and lack of two-way communication.
  • Transparent Transmission Mode: Suitable for applications requiring reliable data transmission and two-way communication, like sensor data collection and device control. Advantages include reliable data transfer, support for two-way communication, and security mechanisms; disadvantages are the need for pairing and relatively higher power consumption.
  • MESH Networking: Best for scenarios requiring wide-area, multi-node communication, such as smart homes and industrial automation. Advantages include wide network coverage and strong scalability; disadvantages are implementation complexity and higher latency.

Future Trends in BLE Technology

As IoT continues to evolve, BLE technology is expected to make further advancements in the following areas:

  • Higher Data Rates: BLE 5.0 has already doubled data rates to 2 Mbps; future improvements may continue to enhance capabilities for richer application scenarios.
  • Lower Power Consumption: Protocol optimizations and new hardware will further reduce device power consumption, extending battery life.
  • Improved Positioning Accuracy: With technologies like AoA (Angle of Arrival) and AoD (Angle of Departure), BLE can achieve sub-meter positioning accuracy for more precise applications.
  • Enhanced Security: The introduction of higher-level encryption and authentication mechanisms will protect user data and privacy.
  • Standardization and Interoperability: As BLE devices proliferate, increased standardization will promote interoperability among devices from different manufacturers.

In summary, Bluetooth BLE technology, as a vital communication method in the IoT field, offers advantages like low power consumption, high compatibility, and diverse connection methods. Developers should choose the most suitable connection method based on specific application needs to fully leverage BLE's potential and create more innovative products and services.


Start Free!

Get Free Trail Before You Commit.