Port Connect 2.4GHz Wireless Bluetooth® Rechargeable Mouse PRO - Port | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Port

Port Connect 2.4GHz Wireless Bluetooth® Rechargeable Mouse PRO

SKU: 900715
R 539.00 R 699.00
You save R 160.00 (23%)
In Stock
You save R 160.00 (23% off)

Engineered for modern professionals and dynamic multitaskers, the Port Connect 2.4GHz Wireless Bluetooth® Rechargeable Mouse PRO delivers seamless performance across multiple platforms with dual wireless technology. Offering both 2.4GHz RF via USB-A dongle (up to 20m range) and Bluetooth...

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

Frequently Bought Together

Engineered for modern professionals and dynamic multitaskers, the Port Connect 2.4GHz Wireless Bluetooth® Rechargeable Mouse PRO delivers seamless performance across multiple platforms with dual wireless technology. Offering both 2.4GHz RF via USB-A dongle (up to 20m range) and Bluetooth connectivity (up to 10m), this mouse empowers users to switch effortlessly between up to three paired devices, making it the perfect solution for hybrid workspaces, remote environments, and cross-platform usage.

Designed for universal compatibility, it integrates dual USB-A and Type-C interfaces and supports a broad range of operating systems—including Windows, Mac OS, Chrome OS, and Android—ensuring plug-and-play usability straight out of the box. With five DPI levels ranging from 800 to 2400, users can fine-tune cursor sensitivity to match their workflow, whether editing, designing, or navigating complex spreadsheets.

Crafted with an ergonomic, ambidextrous form factor and weighing just 80g, this mouse supports extended usage without fatigue for both left- and right-handed users. The built-in 300mAh lithium battery is USB rechargeable and enhanced with an energy-saving mode that offers up to six months of autonomy on a single charge, maximising uptime and reducing environmental impact.

Equipped with five responsive buttons and a precision scroll wheel, the Port Connect 2.4GHz Wireless Bluetooth® Rechargeable Mouse PRO is purpose-built for productivity-driven environments where responsiveness and reliability are non-negotiable. With no software installation required, setup is instant—simply connect, switch, and perform.

FEATURES:

  • Dual wireless connectivity: 2.4GHz USB-A dongle & Bluetooth
  • Multi-device sync: Connect and switch between up to 3 devices
  • Broad compatibility: USB-A & Type-C | Works with Windows, Mac OS, Chrome OS, Android
  • Customisable DPI: 5 precision settings (800 / 1200 / 1600 / 2000 / 2400 DPI)
  • Lightweight & ergonomic: Ambidextrous design ideal for all-day use
  • Long-lasting power: Up to 6 months on a single charge
  • Plug-and-play operation: No driver installation required
  • Professional functionality: 5 buttons + scroll wheel for enhanced control

SPECIFICATIONS:

  • Connectivity:
    • Type-C & USB-A Connectivity
    • 2.4 GHz wireless technology (20m range)
  • Bluetooth® technology (10m range)
  • Power: 1x 300mAh lithium battery
  • Characteristics: 5 buttons and a scroll wheel
  • Adjustable Speed: 800, 1200, 1600, 2000, 2400 DPI optical sensor
  • Working voltage: 3.7 V
  • Working current: 5mA
  • Compatibility: Windows, Mac OS, Chrome OS, Android
  • Material: ABS / PCBA
  • Product Dimensions: 6.8 x 10.9 x 4.3 cm
  • Product Weight: 80 g

WHAT'S IN THE BOX:

  • Port Connect 2.4GHz Wireless Bluetooth® Rechargeable Mouse PRO x1
  • 2.4GHz USB Receiver (Dongle) x1
  • USB-A to Type-C Converter x1
  • USB Charging Cable x1
  • User Manual x1
Brand Port
Colour -
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 36 Months
0.0
0 reviews
Login to Review

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

Related Products

-28%
Port Connect Ergo Shape Bluetooth Rechargeable Mouse
Port

Port Connect Ergo Shape Bluetooth Rechargeable Mouse

R 339.00 R 469.00

Save R 130.00

In Stock

-30%
Port Connect MOUSE COLLECTION II WIRELESS Olive
Port

Port Connect MOUSE COLLECTION II WIRELESS Olive

R 139.00 R 199.00

Save R 60.00

In Stock

-26%
Port Connect Bluetooth + Wireless Rechargeable Ergonomic Trackball Mouse
Port

Port Connect Bluetooth + Wireless Rechargeable Ergonomic Trackball Mouse

R 609.00 R 819.00

Save R 210.00

In Stock

-30%
UGREEN M511 Ergonomic 2.4GHz Wireless Mouse - Black
Ugreen

UGREEN M511 Ergonomic 2.4GHz Wireless Mouse - Black

R 139.00 R 199.00

Save R 60.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!