Xiaomi Mijia Truclean 5 Pro Wet Dry Vacuum - Xiaomi | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Xiaomi

Xiaomi Mijia Truclean 5 Pro Wet Dry Vacuum

SKU: BHR098KEU
R 11 940.72
Out of Stock

Powerful 26,000 Pa wet and dry cleaning | Steam sanitising up to 160°C | Anti-hair-tangle roller brush | Self-cleaning base with hot water and drying | Up to 40-min runtime

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

Powerful 26,000 Pa wet and dry cleaning | Steam sanitising up to 160°C | Anti-hair-tangle roller brush | Self-cleaning base with hot water and drying | Up to 40-min runtime

Quick Specs

  • Achieve powerful deep cleaning with up to 26,000 Pa of suction across four versatile operating modes.
  • Enjoy steam cleaning at up to 160°C to sanitise floors without harsh chemicals.
  • Experience tangle-free performance with a roller brush featuring an anti-hair-tangling system and comb teeth.
  • Benefit from effortless maintenance with hot water self-cleaning and roller drying on the cleaning base.
  • Clean freely for up to 40 minutes on a single charge in absorption mode.

Complete Floor Cleaning, Simplified

The Xiaomi Mijia TruClean 5 Pro Wet Dry Vacuum is built for households that demand more than a basic sweep. Whether you're tackling dry crumbs, wet spills, or ground-in grime on hard floors, this cordless vacuum handles it all in a single pass — making it the all-in-one floor care solution for the modern South African home.

Four Modes, One Powerful Machine

Tired of swapping between multiple cleaning tools to get your floors truly clean? The TruClean 5 Pro offers four dedicated operating modes — Standard, Steam, Absorption, and Power — so you can match the cleaning intensity to the task at hand. With a maximum suction power of 26,000 Pa, even stubborn debris doesn't stand a chance, while Steam mode delivers heat up to 160°C for a deeper, more hygienic clean.

A Brush That Battles Tangles So You Don't Have To

Hair — whether pet or human — is one of the most frustrating things to find wrapped around a vacuum's roller. The TruClean 5 Pro's brush system features an anti-hair-tangling mechanism with comb teeth that actively prevent hair from building up around the roller, so your vacuum keeps performing at its best with minimal intervention. The 180° device tilt angle also lets you reach effortlessly under furniture and into low spaces that other vacuums miss.

Maintenance That Practically Does Itself

After a cleaning session, simply return the vacuum to its cleaning base and let it take care of the rest. The base charges the battery, washes the roller with hot water at up to 100°C, and then dries it — all automatically. With a clean water tank capacity of at least 1 litre and a 700 ml dirty water tank, you can cover meaningful floor area before needing to refill or empty. The result is a cleaner that stays fresh and ready for the next clean, without the usual maintenance hassle.

Features

  • 26,000 Pa maximum suction power for thorough wet and dry floor cleaning.
  • Four operating modes: Standard, Steam, Absorption, and Power — adaptable to any cleaning need.
  • Steam cleaning at temperatures up to 160°C for hygienic, chemical-free sanitising.
  • Roller brush with anti-hair-tangling system and comb teeth to prevent hair wrap-up.
  • Intelligent two-way movement assistance for smooth, controlled manoeuvring.
  • 180° device tilt angle to clean under low furniture and into tight spaces.
  • Cleaning base with hot water roller washing (up to 100°C) and automatic roller drying.
  • Up to 40 minutes of runtime in absorption mode; up to 38 minutes in standard mode.
  • 700 ml dirty water tank and a clean water tank of at least 1 litre capacity.
  • Quiet drying cycle at 45 dB(A) on the cleaning base.

Specifications

  • Brand: Xiaomi
  • Colour: Silver & Black
  • Warranty: 12 Months
  • Suction Power: 26000pa
  • Max Runtime: 40 minutes
  • Charge Time: 5 hours
  • Dustbin Capacity: Dirty water tank 700ml

What's in the Box

  • Xiaomi Mijia TruClean 5 Pro Wet Dry Vacuum x1
  • Handle x1
  • Cleaning base x1
  • Cleaning brush x1
  • User manual x1
Brand Xiaomi
Colour Silver & 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 Vacuum Cleaner G20
Xiaomi

Xiaomi Vacuum Cleaner G20

R 5 192.38

In Stock

Xiaomi Truclean W30 Pro Wet Dry Vacuum
Xiaomi

Xiaomi Truclean W30 Pro Wet Dry Vacuum

R 8 514.64

In Stock

Xiaomi Vacuum Cleaner P30 Handheld - White
Xiaomi

Xiaomi Vacuum Cleaner P30 Handheld - White

R 2 077.76

In Stock

Xiaomi Truclean W20 Wet Dry Vacuum
Xiaomi

Xiaomi Truclean W20 Wet Dry Vacuum

R 5 815.30

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!