Redragon BM-2944 2.4GHz 4000 DPI Wireless Optical Mouse – Black - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon BM-2944 2.4GHz 4000 DPI Wireless Optical Mouse – Black

SKU: RD-BM-2944
R 99.00
Out of Stock

4000 DPI Precision | 2.4GHz Wireless | Windows & macOS Compatible Quick Specs

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

4000 DPI Precision | 2.4GHz Wireless | Windows & macOS Compatible

Quick Specs

  • Up to 4000 DPI optical precision
  • 1000Hz polling rate for responsive control
  • Stable 2.4GHz wireless connection (up to 10m range)
  • Durable switches rated for 10 million clicks
  • Lightweight ergonomic design for daily comfort

Responsive Precision You Can Rely On

The Redragon BM-2944 Wireless Mouse is designed for users who demand smooth performance and dependable reliability. Built for durability and precision, this mouse delivers stable 2.4GHz wireless connectivity for a clean, cable-free workspace. Whether you're working, studying, or handling everyday computing tasks, the BM-2944 ensures accurate tracking and responsive cursor control across a variety of surfaces.

High-Precision Tracking for Work and Play

Equipped with a KA8G2 + BK8092 optical sensor supporting up to 4000 DPI, this Redragon wireless mouse offers precise and consistent tracking. From detailed spreadsheet work to fast navigation between applications, movements feel smooth and controlled. The 1000Hz polling rate ensures minimal input delay, giving you an immediate response with every click and scroll.

Built for Everyday Comfort
The Redragon BM-2944 features an ergonomic ambidextrous design that supports both palm and claw grip styles. Its lightweight build reduces wrist strain during long work sessions, making it ideal for office use, home setups, and study environments.

Constructed from durable ABS material, it is designed for reliable everyday performance.

Durable Performance You Can Trust

Redragon builds products for longevity, and the BM-2944 is no exception. The left and right switches are rated for up to 10 million clicks, ensuring long-term reliability even with heavy daily usage.

The precision scroll wheel provides smooth tactile feedback for accurate document and webpage navigation.

Simple Plug & Play

Just connect the included USB nano receiver and start working instantly. No complicated installation required. Compatible with Windows XP, 7, 8, 10, 11 and macOS systems.

FEATURES:

  • Wi-Fi 7 dual-band performance for faster, smoother connectivity
  • Redragon 2.4GHz wireless technology
  • High-precision 4000 DPI optical sensor
  • 1000Hz polling rate for responsive performance
  • 10 million click switch durability
  • Ergonomic ambidextrous design
  • Lightweight construction for extended comfort
  • Plug & play USB nano receiver
  • Power-efficient design (1 × AA battery required)
  • Software support available

SPECIFICATIONS:

  • Connectivity: 2.4GHz Wireless
  • Sensor: KA8G2 + BK8092
  • Maximum DPI: 4000 DPI
  • Polling Rate: 1000Hz
  • Buttons: 4
  • Switch Lifecycle: 10 Million Clicks
  • Material: ABS
  • Power Supply: 1 × AA Battery
  • Operating Systems: Windows XP / 7 / 8 / 10 / 11 / macOS
  • Product Dimensions: 10.6 × 6.2 × 3.1 cm
  • Product Weight: 54 g (±10 g)

WHAT’S IN THE BOX:

  • Redragon BM-2944 2.4GHz 4000 DPI Wireless Optical Mouse – Black ×1
  • USB Nano Receiver ×1

Why Redragon?

Redragon provides reliable, high-performance peripherals designed for gamers and everyday users alike. Combining durable construction, responsive performance, and excellent value, Redragon products deliver dependable technology trusted by users around the world.

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

Redragon M997-ULT PRISM ULTRA 26000 DPI Wireless Mouse - Black
Redragon

Redragon M997-ULT PRISM ULTRA 26000 DPI Wireless Mouse - Black

R 1 299.00

Out of Stock

Redragon FYZU M995 PRO Wireless Gaming Mouse - Black
Redragon

Redragon FYZU M995 PRO Wireless Gaming Mouse - Black

R 549.00

In Stock

REDRAGON Aatrox Wireless 6200DP RGB MMO Gaming Mouse - Black
Redragon

REDRAGON Aatrox Wireless 6200DP RGB MMO Gaming Mouse - Black

R 629.00

Out of Stock

Asus TUF GAMING Mini 12000 DPI Wireless Mouse Hatsune Miku Edition
ASUS

Asus TUF GAMING Mini 12000 DPI Wireless Mouse Hatsune Miku Edition

R 2 499.00

Only 1 left - order soon!

// 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!