Xiaomi Power Bank 10000mAh 22.5W Lite - Xiaomi | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Xiaomi

Xiaomi Power Bank 10000mAh 22.5W Lite

SKU: BHR9350GL
R 289.00
Out of Stock

The Xiaomi Power Bank 10000mAh 22.5W Lite is a compact yet powerful solution for all your fast-charging needs. With a lightweight design of just 227g, it’s easy to carry around, ensuring you never run out of power while on the go. Its high-capacity battery allows you to fully charge your devices...

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

Frequently Bought Together

The Xiaomi Power Bank 10000mAh 22.5W Lite is a compact yet powerful solution for all your fast-charging needs. With a lightweight design of just 227g, it’s easy to carry around, ensuring you never run out of power while on the go. Its high-capacity battery allows you to fully charge your devices and still have energy left, making it an essential companion for travel, work, or daily use. Built with eco-friendly PC/ABS material, this power bank is not only durable and scratch-resistant but also designed to fit comfortably in your hand.

Equipped with a Type-C port and two USB-A ports, the power bank provides a maximum power output of 22.5W, allowing you to charge up to three devices simultaneously. The two-way fast charging feature ensures that your devices are powered up quickly, while the power bank itself recharges in just 4.5 hours with a 9V/2A charger. Supporting multiple fast-charging protocols like PD and QC3+, it is fully compatible with mainstream devices, including smartphones, tablets, wireless earbuds, and gaming consoles like the Nintendo Switch.

The Xiaomi Power Bank 10000mAh 22.5W Lite is engineered for safety with a built-in smart USB charging controller and nine layers of circuit protection. These safeguards prevent overcharging, over-discharging, and short-circuiting, keeping your devices protected at all times. The high power conversion rate of 74% ensures efficient energy transfer, maximizing the battery life of both the power bank and connected devices.

For added convenience, an LED indicator lets you check the battery level at a glance, so you always know when it’s time to recharge. Whether you’re travelling, commuting, or simply need a reliable backup power source, the Xiaomi Power Bank 10000mAh 22.5W Lite delivers efficiency, portability, and peace of mind in a sleek and modern design.

FEATURES:

  • Maximum power: 22.5W
  • Charge three devices simultaneously
  • Type-C two-way fast charging
  • Multiple device compatibility
  • Lightweight and portable
  • 9 layers of circuit protection

SPECIFICATIONS:

  • Power bank conversion rate: 74% (5V/3A)
  • Battery type: Lithium-ion battery
  • Input parameters: 5V⎓3A 9V⎓2.5A
  • Rated capacity: 5500mAh (5V/3A)
  • Output parameters:
    • (USB-A) 5V⎓3A 9V⎓2.23A 12V⎓1.67A 10V⎓2.25A MAX
    • (Type-C) 5V⎓3A 9V⎓2.23A 12V⎓1.67A 10V⎓2.25A MAX
    • (3 ports) 5V⎓3A
  • Input port: Type-C
  • Output port: USB-A/Type-C
  • Battery power (Rated/typical): 35.15Wh/37Wh 9500mAh/10000mAh
  • Charging time:
  • Approximately 4.5 hours (with a 9V/2A charger and the charging cable included in the package)
  • Approximately 6 hours (with a 5V/2A charger, charging cable included in the package)
  • Operating temperature: 5°C to 35°C
  • Product Dimensions: 14.8 x 7.3 x 1.5 cm

WHAT'S IN THE BOX:

  • Xiaomi Power Bank 10000mAh 22.5W Lite - White x1
  • Charging Cable x1
  • User Manual x1
Brand Xiaomi
Colour White
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 6000mAh Magnetic Power Bank-Tan
Xiaomi

Xiaomi 6000mAh Magnetic Power Bank-Tan

R 749.00

Out of Stock

Xiaomi 33W Power Bank 20000mAh (Integrated Cable) – Tan
Xiaomi

Xiaomi 33W Power Bank 20000mAh (Integrated Cable) – Tan

R 629.00

Out of Stock

Romoss Power Bank 10000mAh 15W BK
Romoss

Romoss Power Bank 10000mAh 15W BK

R 399.00

Out of Stock

Xiaomi Super Slim Magnetic Power Bank 5000 - Black
Xiaomi

Xiaomi Super Slim Magnetic Power Bank 5000 - Black

R 769.00

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!