Xiaomi 12V Max Brushless Cordless Drill EU - Xiaomi | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Xiaomi

Xiaomi 12V Max Brushless Cordless Drill EU

SKU: BHR5510GL
R 2 749.00
In Stock

The Xiaomi 12V Max Brushless Cordless drill gives you an all-new interactive experience with its smart display, this allows you to learn about the working status in real-time. High-resolution display with real-time display of the current operating mode and manual gear speed. Revolutionizing...

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support

Frequently Bought Together

The Xiaomi 12V Max Brushless Cordless drill gives you an all-new interactive experience with its smart display, this allows you to learn about the working status in real-time. High-resolution display with real-time display of the current operating mode and manual gear speed. Revolutionizing conventional tool concepts and keeping the power in your hands.

The brushless motor features high power conversion, strong durability, and low noise levels. Its 30N·m (Max.) torque and 1400rpm rotating speed give you a smooth operating experience.

It features a 360° infinite knob with up to 30 gear stages, which can be adjusted incrementally or by rotating quickly through the gears. Depending on the drilling/screwing mode, the maximum torque or speed can be controlled separately for precision and accuracy to meet the advanced needs of professional users. Its drilling and screw driving modes offer you up to 30-speed incremental adjustments of either the maximum speed or the torque output.

The built-in smart chip automatically matches the appropriate torque to the application scenario so you don't need to worry about over-tightening. The screw driving mode automatically gets locked after tightening to avoid breakage or cracks due to overturning.

Its safe pulse mode is also effective for intermittent rotation which effectively reduces damage to the material, especially effective when using softer materials. This makes it ideal for novices and professionals alike thanks to the intelligent speed control via the chip.

The Xiaomi Cordless Drill features a sleek and lightweight design that is easy to use. The built-in 2000mAh high-quality lithium battery offers you long battery life for peace of mind. The Cordless drill also comes with a 1m fast charging Type-C cable and power adapter for recharging.

FEATURES:

  • Brushless Motor
  • Smart Display
  • Manual Mode
  • Smart Torque Adjustment
  • Safe Pulse Mode
  • Large Battery Capacity
  • Type-C Charging Port

SPECIFICATIONS:

  • Colour: Black
  • Maximum Torque: 30N·m
  • Drill Bits:
    • Metal Drill Bits: 3/4/5/6
    • Wood Drill Bits: 4/5/7/8
  • Bits Size(C6.3x25 mm):
    • Philips: PH1/PH2/PH2/PH3
    • Pozidriv: PZ1/PZ2/PZ2/PZ3
    • Security Torx: T9H/T10H/T15H/T20H/T25H
    • Hex: H3/H4/H5/H6
    • Slotted: SL4/SL6
    • Y Bit: Y1
    • Tri-wing: 2.3
    • Square: S0/S1
    • U Bit: U2.6
  • Battery Capacity: 2000mAh
  • Rated Voltage: 12V⎓
  • Charging Time: 120-180 mins
  • Extension Rod: 60mm
  • Product Dimensions: 18.5 x 17.9 x 5.2 cm
  • Product Weight: 870g

WHAT'S IN THE BOX:

  • Xiaomi 12V Max Brushless Cordless drill x1
  • Storage pouch x1
  • Adaptor x1
  • Charging cable x1
  • Bit storage container x1
  • Drill bit x8
  • Screwdriving bit x24
  • Extension rod x1
  • User manual x1
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 16-in-1 Ratchet Screwdriver
Xiaomi

Xiaomi 16-in-1 Ratchet Screwdriver

R 399.00

In Stock

Xiaomi Mijia Tool Kit
Xiaomi

Xiaomi Mijia Tool Kit

R 1 459.00

In Stock

OWC 12 Piece Portable Toolkit
OWC

OWC 12 Piece Portable Toolkit

R 499.00

Out of Stock

Xiaomi Precision Screwdriver Kit
Xiaomi

Xiaomi Precision Screwdriver Kit

R 399.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!