Xiaomi Smart Band 11 Active - Black - Xiaomi | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Xiaomi

Xiaomi Smart Band 11 Active - Black

SKU: BHR09AEGL
R 676.18
Out of Stock

21-day battery life | 50 sports modes | Heart rate & SpO₂ monitoring | 5ATM water resistance | 1.47" high-refresh display

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

21-day battery life | 50 sports modes | Heart rate & SpO₂ monitoring | 5ATM water resistance | 1.47" high-refresh display

Quick Specs

  • Track your health around the clock with heart rate, blood oxygen, sleep, and all-day stress monitoring on your wrist
  • Stay active with support for 50 sports modes, so every workout — from swimming to cycling — is covered
  • Enjoy up to 21 days of battery life on a single charge, so you spend less time tethered to a cable
  • Swim, sweat, and shower worry-free with 5ATM water resistance built in
  • Read every notification clearly on the smooth 1.47-inch TFT display with a 60Hz refresh rate

Fitness and wellness, all day on your wrist

The Xiaomi Smart Band 11 Active is designed for anyone who wants a capable, comfortable health companion without the bulk or the price tag of a full smartwatch. Compact enough to forget you're wearing it, yet packed with sensors that keep a continuous eye on your heart rate, blood oxygen levels, sleep quality, stress, and more, it gives you a genuinely multi-dimensional picture of your wellbeing throughout the day.

50 sports modes — from the pool to the pavement

Whether you're logging laps in the pool or grinding out a morning run, the Smart Band 11 Active has a dedicated tracking mode for it. With 50 supported sports modes and 5ATM water resistance, the band goes wherever you do without you needing to think twice about it. Strap it on, select your activity, and let it do the work.

Charge less, do more

Tired of fitness bands that need topping up every other day? The Smart Band 11 Active carries a 300mAh battery capable of up to 21 days of extended battery life, so you can track an entire fortnight of training, sleep, and daily activity before you even reach for the charging cable. Even under normal everyday usage, you can expect around 8 days between charges.

A refined look that punches above its price

The Smart Band 11 Active isn't just practical — it's been designed with a 2.5D screen cover, a matte metal paint textured middle frame, and a strap with a fresh striped texture that adds a youthful, energetic edge to the wrist. The 1.47-inch TFT display runs at a smooth 60Hz refresh rate, making navigation feel fluid and responsive in everyday use.

Features

  • 1.47-inch TFT display with 60Hz refresh rate and 172 × 320 pixel resolution for clear, smooth viewing
  • Continuous heart rate monitoring and blood oxygen (SpO₂) tracking via optical sensors
  • All-day stress (pressure) monitoring for a fuller picture of your daily wellbeing
  • Multi-dimensional health management including sleep tracking and women's health management
  • 50 sports modes to cover a wide range of activities
  • 5ATM water resistance — suitable for swimming and showering
  • Up to 21 days battery life (extended); 8 days typical normal usage from a 300mAh battery
  • Bluetooth 5.3 connectivity
  • Accelerometer sensor alongside the optical heart rate and blood oxygen sensor
  • Compact, lightweight design (18g excluding strap) with a 2.5D screen cover and matte metal paint textured frame

Specifications

  • Brand: Xiaomi
  • Colour: Black
  • Warranty: 12 Months
  • What's in the Box: Band body x 1,Band strap x1,Charging cable x1,User manual x1
  • Product Weight: 18g Excluding strap
  • Product Dimensions (L x W x H): 4.35 x 2.58 x 1.02
  • Wearable Type: Smart Band
  • Display Size: 1.47"
  • Display Type: TFT
  • Typical Battery Life: 21 Days
  • Heart Rate Monitor: true
  • SpO₂ Monitor: true
  • Water Resistance: 5ATM

What's in the Box

  • Xiaomi Smart Band 11 Active – Black x1
  • Band strap x1
  • Charging cable x1
  • User manual x1

Why Xiaomi

Xiaomi has built its reputation by making advanced technology genuinely accessible — and the Smart Band 11 Active is a clear expression of that philosophy. Combining thoughtful design with serious health-tracking capability at an approachable price point, it reflects Xiaomi's commitment to putting smarter living within reach for everyone.

Brand Xiaomi
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

Xiaomi Smart Band 10 Ceramic Edition - White
Xiaomi

Xiaomi Smart Band 10 Ceramic Edition - White

R 1 766.30

In Stock

Xiaomi Smart Band 9 Active - Pink
Xiaomi

Xiaomi Smart Band 9 Active - Pink

R 624.27

Out of Stock

Xiaomi Smart Band 9 Active - Beige White
Xiaomi

Xiaomi Smart Band 9 Active - Beige White

R 624.27

In Stock

Xiaomi Smart Band 10 Pro – Black
Xiaomi

Xiaomi Smart Band 10 Pro – Black

R 1 973.94

In Stock

// Share product with fallback // 2026-05-22: rewritten. Old version had three bugs: // 1) Copy Link button used `this.textContent='Copied!'` which destroyed the // icon (textContent replaces everything). After clicking, the link icon // disappeared. // 2) Inline onclick handlers had nested \x27-escaped strings interpolating // `url` directly — if the URL contained a single quote the JS broke. // 3) Close button used `this.closest('div[style]').parentElement.remove()` // — fragile, depends on no inline style elsewhere in the DOM tree. // New version: build with DOM nodes, attach proper event listeners, keep the // icon, gracefully handle clipboard failure, use a held reference to close. function shareProduct() { var title = document.querySelector('.product-title').textContent; var url = window.location.href; if (navigator.share) { navigator.share({ title: title, url: url }).catch(function() {}); return; } // Fallback: show share options modal var modal = document.createElement('div'); modal.style.cssText = 'position:fixed;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.6);z-index:9999;display:flex;align-items:center;justify-content:center;padding:1rem;'; var encoded = encodeURIComponent(url); var encodedTitle = encodeURIComponent(title); var content = document.createElement('div'); content.style.cssText = 'background:#fff;border-radius:12px;padding:24px;max-width:360px;width:100%;text-align:center;'; content.innerHTML = '

Share this product

' + '
' + ' Facebook' + ' WhatsApp' + ' Email' + '
' + '' + '
'; modal.appendChild(content); function closeModal() { if (modal.parentNode) modal.parentNode.removeChild(modal); } modal.addEventListener('click', function(e) { if (e.target === modal) closeModal(); }); content.querySelector('[data-action="close-modal"]').addEventListener('click', closeModal); var copyBtn = content.querySelector('[data-action="copy-link"]'); var copyLabel = copyBtn.querySelector('.btn-label'); copyBtn.addEventListener('click', function() { function flashLabel(text) { var prev = copyLabel.textContent; copyLabel.textContent = text; setTimeout(function() { copyLabel.textContent = prev; }, 1800); } if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(url) .then(function() { flashLabel('Copied!'); }) .catch(function() { flashLabel('Press Ctrl+C'); }); } else { // Legacy browser fallback — execCommand still works on http: contexts var ta = document.createElement('textarea'); ta.value = url; ta.style.position = 'fixed'; ta.style.opacity = '0'; document.body.appendChild(ta); ta.select(); try { document.execCommand('copy'); flashLabel('Copied!'); } catch (e) { flashLabel('Press Ctrl+C'); } document.body.removeChild(ta); } }); document.body.appendChild(modal); }
Chat with us!