Connection Interval

<\/script>\n
'; }, get iframeSnippet() { const domain = '{ SITE_DOMAIN }'; const type = '{ embed_type }'; const slug = '{ embed_slug }'; return ''; }, get activeSnippet() { return this.method === 'script' ? this.scriptSnippet : this.iframeSnippet; }, copySnippet() { navigator.clipboard.writeText(this.activeSnippet).then(() => { this.copied = true; setTimeout(() => { this.copied = false; }, 2000); }); } }" @keydown.escape.window="open = false" @click.outside="open = false">

Embed This Widget

Theme


      
    

Widget powered by . Free, no account required.

The time between two consecutive connection events (7.5 ms to 4 s). Shorter intervals mean lower latency but higher power consumption.

다른 명칭: CI Conn Interval

Connection Interval

The connection interval (CI) defines the time between two consecutive connection events in an active BLE link. It is one of the most important parameters in BLE system design because it directly controls the trade-off between latency, throughput, and power consumption.

Value Range and Granularity

The connection interval is specified in units of 1.25 ms, with an allowed range from 7.5 ms (6 units) to 4000 ms (3200 units). During connection establishment, the central device proposes a minimum and maximum interval, and the two devices negotiate a value within that range. Common values include 7.5 ms for gaming controllers, 30 ms for interactive wearables, and 1000 ms or more for environmental sensors that report infrequently.

Power vs. Latency Trade-off

A shorter connection interval means the radio wakes up more frequently. At 7.5 ms CI, the radio is active roughly 133 times per second, delivering low latency but consuming significantly more power. At 1000 ms CI, the radio wakes only once per second, extending battery life by orders of magnitude but introducing up to 1 second of latency for data delivery.

The optimal connection interval depends on the application. A real-time gaming peripheral needs sub-10 ms CI. A temperature sensor reporting every 5 minutes can use a 2000--4000 ms CI and sleep between events. A heart rate monitor typically uses 500--1000 ms CI as a balance between data freshness and battery life.

Dynamic Adjustment

BLE 5.3 introduced Connection Subrating, which allows devices to dynamically switch between different effective connection intervals without renegotiating the base parameters. A keyboard, for example, can operate at a fast CI while the user is typing and automatically switch to a slow CI during idle periods -- all within the same connection, without the overhead of a full parameter update procedure.

Interaction with Slave Latency

Slave latency works in conjunction with CI to further reduce power consumption. Even if the CI is set to 30 ms, a peripheral with slave latency of 10 can skip up to 10 consecutive connection events, effectively polling at 330 ms intervals when it has no data to send. This gives the peripheral the best of both worlds: low latency when data is available, and low power when idle.

Related Terms

BLE Connection Parameters: Optimizing Power and Latency

Getting Started

…three parameters govern timing and power behavior: connection interval, slave latency, and supervision timeout. Tuning these…

BLE Version History: From 4.0 to 6.0 Compared

Getting Started

…to skip N connection events, effectively multiplying the connection interval without renegotiating. Critical for battery-powered nodes…

ESP32 BLE Development with ESP-IDF

Development

…handles well BLE connection + Wi-Fi data burst Increase connection interval to 100 ms+ BLE throughput-critical Disable Wi-Fi during…

BLE PHY Layer: 1M, 2M, and Coded PHY Explained

Protocols & Profiles

…longer to transmit than 1M PHY — plan your duty cycle and connection interval accordingly. Data Rate vs Range Comparison Use the Range…

Optimizing BLE Power Consumption for Battery-Powered Devices

Hardware & Design

…~1 µA but provides 20 ppm accuracy, enabling tight connection interval scheduling. The internal RC oscillator (LFRC) is free but…

BLE in Wearables: Fitness Trackers, Watches, and Hearables

Industry Applications

…the firmware revision string in the device settings. Connection Interval Tuning Slave latency lets the peripheral skip N…

BLE Connection Issues: Diagnosis and Resolution Guide

Troubleshooting

BLE Throughput Optimization: Maximizing Data Transfer Speed

Troubleshooting

…achieve 100–800 kbps depending on PHY selection, MTU size, connection interval , and protocol overhead. This guide walks through each…

자주 묻는 질문

Our glossary covers 90+ BLE technical terms organized by category. Each term includes a definition, related terms, and links to relevant chips and guides.