Redragon BM-4091 PRO 4000 DPI Dual Mode Wireless Office Mouse - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon BM-4091 PRO 4000 DPI Dual Mode Wireless Office Mouse

SKU: RD-BM-4091-PRO
R 109.00
In Stock

4000 DPI (5 Adjustable Levels) | 2.4G + Bluetooth Dual-Mode Wireless | Ergonomic Symmetrical Grip | 6 Buttons | Compact & Portable Quick Specs

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

Frequently Bought Together

4000 DPI (5 Adjustable Levels) | 2.4G + Bluetooth Dual-Mode Wireless | Ergonomic Symmetrical Grip | 6 Buttons | Compact & Portable

Quick Specs

  • Switch between five DPI levels up to 4000 for precise, responsive control
  • Connect wirelessly two ways — 2.4G or Bluetooth — and pair across devices
  • Work in comfort with an ergonomic symmetrical grip and soft rubber sides
  • Slip it into any bag thanks to the compact, lightweight, portable design
  • Power on the go with a single AA battery — no charging required

Dual-Mode Wireless Freedom for Any Setup

The Redragon BM-4091 PRO is a dual-mode wireless office mouse built for flexible, clutter-free working across South Africa. Connect over a 2.4G receiver for a stable, low-latency link, or switch to Bluetooth to pair with a second device — ideal for moving between a laptop and desktop without missing a beat. With no cables to manage, your desk stays tidy and your workflow stays smooth.

Precise Control That Adapts to You

At the heart of the mouse is a sensor offering five adjustable DPI levels — 800, 1200, 1600, 2400 and 4000 — so you can dial in anything from fine, detailed cursor work to quick, sweeping movements across multiple screens. Six buttons put handy shortcuts within easy reach, while durable button switches deliver effortless, reliable fingertip control day in, day out.

Comfortable, Compact and Built to Travel

Designed for long working sessions, the BM-4091 PRO features an ergonomic symmetrical shape and soft rubber grips that fit naturally in your hand and help reduce fatigue. Its compact, lightweight ABS body makes it genuinely portable — easy to drop into a laptop bag — and a single AA battery keeps it running without the need to stop and recharge.

FEATURES:

  • 4000 max DPI with five adjustable levels (800, 1200, 1600, 2400 and 4000) for precise control
  • 2.4G and Bluetooth dual-mode wireless connectivity for seamless multi-device use
  • Ergonomic symmetrical grip designed for all-day comfort
  • Soft rubber side grips that fit naturally in your hand
  • Compact, lightweight and portable design
  • Six buttons with durable switches for effortless fingertip control
  • Powered by a single AA battery — no charging required
  • Lightweight ABS construction

SPECIFICATIONS:

  • Connectivity: 2.4G / Bluetooth (dual mode)
  • Sensor: BK3632+KA8G2
  • Max DPI: 4000
  • DPI Levels: 800 / 1200 / 1600 / 2400 / 4000
  • Number of Buttons: 6
  • Power Source: 1 × AA battery
  • Backlight: None
  • Material: ABS
  • Product Dimensions: 11 × 7.3 × 4 cm
  • Product Weight: 72 g (±5 g, without battery)

WHAT’S IN THE BOX:

  • Redragon BM-4091 PRO 4000 DPI Dual Mode Wireless Office Mouse x1

Why Redragon?

Redragon is known worldwide for dependable, great-value peripherals, and the BM-4091 PRO brings that same practicality to everyday computing. For South African users who want a comfortable, flexible dual-mode wireless mouse for the home or office without breaking the bank, it’s a smart, fuss-free choice backed by Redragon’s reputation for quality and value.

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

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

Related Products

Xiaomi Dual Mode Silent Wireless Mouse - White
Xiaomi

Xiaomi Dual Mode Silent Wireless Mouse - White

R 349.00

Out of Stock

Keychron M3 RGB Wireless Optical Mouse - White
Keychron

Keychron M3 RGB Wireless Optical Mouse - White

R 1 199.00

In Stock

Keychron M3 RGB Wireless Optical Mouse – Black
Keychron

Keychron M3 RGB Wireless Optical Mouse – Black

R 1 199.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!