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

Port Connect Wireless Bluetooth Expert and Mac Mouse - Grey

SKU: 910201
R 409.00 R 549.00
You save R 140.00 (26%)
In Stock
You save R 140.00 (26% off)

The Port Wireless Bluetooth Expert & Mac Mouse isn’t just another productivity peripheral — it’s a precision tool designed for users who expect more from their everyday tech. Whether you're working across multiple devices or fine-tuning your creative output, this mouse packs serious...

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

Frequently Bought Together

The Port Wireless Bluetooth Expert & Mac Mouse isn’t just another productivity peripheral — it’s a precision tool designed for users who expect more from their everyday tech. Whether you're working across multiple devices or fine-tuning your creative output, this mouse packs serious flexibility into a clean, minimalist design.

Let’s talk connectivity. With dual-mode support, 2.4 GHz wireless and Bluetooth®, the Port Wireless Bluetooth Expert & Mac Mouse easily pairs with up to three devices. Switch from your MacBook to your PC or Android tablet with a single tap of the mode button. It’s fast, seamless, and built for multitasking in the real world.

Under the hood, you’ve got a 500mAh rechargeable lithium battery, juiced up via USB-C. No more disposable batteries — and thanks to smart power-saving features like standby mode and a physical ON/OFF switch, it’s efficient too. This mouse is built to stay ready without wasting energy.

Navigation? Ultra-satisfying. The FreeWheel® scroll tech is high-precision and ultra-fast — think buttery-smooth scrolling across long spreadsheets or zooming through timelines in video editing software. You also get full directional control with left/right scroll wheel navigation and six programmable buttons, including forward/backwards side controls and DPI adjustment. Choose from 1000, 1600, 2400 or 3200 DPI — whether you're browsing, designing, or gaming, you’ve got full control.

And yes — it’s quiet. The silent-click design is perfect for late-night work sessions or shared spaces where noise matters. Plus, it’s universally compatible across macOS®, Windows®, iOS®, and Android, making it a true cross-platform performer.

Bottom line? The Port Wireless Bluetooth Expert & Mac Mouse blends smart functionality with clean design, giving you pro-level precision without the desk clutter.

FEATURES

  • Dual-mode connectivity with 2.4 GHz wireless and Bluetooth® for seamless multi-device switching
  • Pairs with up to 3 devices with a dedicated mode-switch button
  • Rechargeable 500mAh lithium battery with USB-C charging for long-lasting performance
  • Silent-click design ideal for shared workspaces and quiet environments
  • FreeWheel® technology enables ultra-fast, precision scrolling and smooth navigation
  • Adjustable DPI settings (1000 / 1600 / 2400 / 3200) for optimal cursor control
  • Six-button layout with forward/backward side buttons for streamlined multitasking
  • Left/right wheel navigation supports enhanced control in spreadsheets and creative workflows
  • Physical ON/OFF switch and standby mode improve battery efficiency
  • Compatible with macOS®, Windows®, iOS®, and Android for universal device support

SPECIFICATIONS

  • Connectivity: 2.4 GHz wireless technology
  • Bluetooth® technology
  • Max Power Radio Frequency: -4.00 dBm
  • Frequency Range: 2402 MHz - 2480 MHz
  • Power: 1x 500mAh Rechargable lithium battery
  • Characteristics: 6 buttons and a scroll wheel
  • Adjustable Speed: 1000, 1600, 2400, 3200 DPI optical sensor
  • Compatibility: Windows, Mac OS, Chrome OS, Android
  • Product Dimensions: 10.5 x 6.1 x 3.9 cm
  • Product Weight:  108 g
  • PCB: 5
  • Material: ABS / PCBA
  • Warranty: 3 Years

WHAT'S IN THE BOX

  • Port Connect Wireless Bluetooth Expert & Mac Mouse - Grey x1
  • Type-C Charging Cable x1
  • User guides x2
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

-30%
Port Connect MOUSE COLLECTION II WIRELESS Graphite
Port

Port Connect MOUSE COLLECTION II WIRELESS Graphite

R 139.00 R 199.00

Save R 60.00

Out of Stock

-32%
UGREEN Multi-Mode Vertical Mouse Bluetooth and 2.4G Wireless–Black
Ugreen

UGREEN Multi-Mode Vertical Mouse Bluetooth and 2.4G Wireless–Black

R 339.00 R 499.00

Save R 160.00

In Stock

-24%
Port Connect Ultimate Rechargeable Bluetooth and Wireless Mouse
Port

Port Connect Ultimate Rechargeable Bluetooth and Wireless Mouse

R 609.00 R 799.00

Save R 190.00

In Stock

-32%
Port Connect PURE Bluetooth Rechargeable Mouse
Port

Port Connect PURE Bluetooth Rechargeable Mouse

R 339.00 R 499.00

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