Port Connect Bluetooth Wireless and Rechargeable Executive Mouse - Black - Port | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Port

Port Connect Bluetooth Wireless and Rechargeable Executive Mouse - Black

SKU: 900716
R 769.00 R 979.00
You save R 210.00 (21%)
In Stock
You save R 210.00 (21% off)

The Port Connect Bluetooth Wireless & Rechargeable Executive Mouse is designed for professionals who demand both performance and versatility in their workflow. Offering dual connectivity via Bluetooth® and 2.4GHz wireless technology, this premium mouse ensures a reliable, lag-free connection...

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

Frequently Bought Together

The Port Connect Bluetooth Wireless & Rechargeable Executive Mouse is designed for professionals who demand both performance and versatility in their workflow. Offering dual connectivity via Bluetooth® and 2.4GHz wireless technology, this premium mouse ensures a reliable, lag-free connection across multiple devices. A built-in selector allows you to connect and switch between three devices effortlessly, while the included USB-A and USB Type-C connectivity options guarantee compatibility with laptops, desktops, tablets, and more. Whether you’re at the office, at home, or on the go, this mouse adapts seamlessly to your needs.

Engineered for optimum control, the Port Connect Executive Mouse features five adjustable speed levels ranging from 800 to 3200 DPI, allowing you to fine-tune cursor sensitivity for different tasks, from precision design work to fast-paced navigation. Its ergonomic and lightweight design reduces wrist strain during extended use, while the dual scroll wheel system—including a side wheel—maximizes productivity for multitaskers, creatives, and spreadsheet power users. The plug-and-play setup means you can get to work instantly without complicated installations.

Equipped with a 300mAh lithium battery, this wireless mouse delivers up to 6 months of autonomy on a single full charge, thanks to its energy-saving mode. This makes it ideal for professionals who travel frequently or work in dynamic environments, eliminating the hassle of constantly replacing batteries. The 20m wireless range in 2.4GHz mode and 10m range via Bluetooth® give you the freedom to work comfortably without being tethered to your device, making it perfect for presentations, conference rooms, and flexible desk setups.

Crafted from durable ABS material for long-term use, the Port Connect Bluetooth Executive Mouse is compatible with Windows, Mac OS, Chrome OS, and Android devices, making it a truly universal solution for cross-platform professionals. With five programmable buttons and dual scroll wheels, it enhances workflow efficiency while maintaining a sleek, professional aesthetic. Backed by a 3-year warranty, this mouse is built to deliver both reliability and style for years to come.

FEATURES:

  • Its selection device allows you to connect three devices separately and select them easily.
  • Its double USB-A and USB-C connectivity makes it compatible with all devices.
  • 5 adjustable speed levels for optimum accuracy.
  • Its ergonomic and lightweight design offers optimal comfort during use.
  • A plug and play installation allowing to be operational as soon as plug-in.
  • 5 buttons, a top scroller and a side, perfect to maximize work efficiency
  • 3 years warranty

SPECIFICATIONS:

  • USB Type-C & USB-A Connectivity
  • Material: ABS / PCBA
  • Connectivity: 2,4Ghz wireless technology (20m range) and Bluetooth® technology (10m range)
  • Power: 1x 300mAh lithium battery
  • Characteristics: 5 buttons and two scroll wheels
  • Adjustable speed: 800, 1200, 1600,2400, 3200 DPI optical sensor
  • Plug and play setup
  • Working voltage: 3,7V
  • Working current: 5mA
  • Compatibility: Windows, Mac OS, Chrome OS, Android USB-A & USB Type-C connectivity
  • Product dimensions: 7,7 × 11,9 x 4,6 cm
  • Product weight: 130 g

WHAT'S IN THE BOX:

  • Port Connect Bluetooth Wireless & Rechargeable Executive Mouse - Black x1
  • Wireless USB Receiver x1
  • USB-A to USB Type-C Converter x1
  • USB Charging Cable x1
  • User Manual x1
Brand Port
Colour Black
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

-21%
Port Connect Essential Bluetooth Wireless Rechargeable Mouse
Port

Port Connect Essential Bluetooth Wireless Rechargeable Mouse

R 269.00 R 339.00

Save R 70.00

In Stock

-25%
Port Connect Optical USB Mouse
Port

Port Connect Optical USB Mouse

R 89.00 R 119.00

Save R 30.00

In Stock

-28%
Port Connect Ergo Shape Rechargeable Wireless Mouse
Port

Port Connect Ergo Shape Rechargeable Wireless 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

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