Port Connect Bluetooth + Wireless Rechargeable Ergonomic Trackball Mouse - Port | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Port

Port Connect Bluetooth + Wireless Rechargeable Ergonomic Trackball Mouse

SKU: 900719
R 609.00 R 819.00
You save R 210.00 (26%)
In Stock
You save R 210.00 (26% off)

Boost your productivity and work in complete comfort with the Port Connect Bluetooth® + Wireless 1600 DPI Rechargeable Ergonomic Trackball Mouse. Designed with a thoughtful inclined ergonomic profile, this innovative mouse naturally aligns your wrist and forearm to help reduce muscle strain,...

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

Frequently Bought Together

Boost your productivity and work in complete comfort with the Port Connect Bluetooth® + Wireless 1600 DPI Rechargeable Ergonomic Trackball Mouse. Designed with a thoughtful inclined ergonomic profile, this innovative mouse naturally aligns your wrist and forearm to help reduce muscle strain, making it ideal for long hours of professional use. The integrated directional trackball allows for smooth and precise thumb control, reducing wrist movement and enhancing navigation efficiency—especially in compact workspaces or during travel.

The mouse features dual wireless connectivity, supporting both Bluetooth® 3.0/5.0 and 2.4GHz wireless via a USB-A dongle. It also includes dual USB-A and USB Type-C connections, ensuring broad compatibility with modern laptops, desktops, tablets, and hybrid devices. Switch seamlessly between three connected devices using the easy selection toggle, perfect for multitaskers working across multiple platforms.

Optimised for precision and versatility, the Port Connect Ergonomic Trackball Mouse includes four adjustable DPI levels (800/1200/1600), allowing users to fine-tune the sensitivity for different workflows such as design, editing, or general browsing. Its silent click functionality promotes a peaceful and distraction-free workspace, whether at the office, home, or in a shared environment.

Thanks to its 300mAh rechargeable lithium battery, the mouse delivers reliable performance without the hassle of frequent charging. Installation is a breeze with Plug & Play functionality—no software needed. Crafted from durable ABS and PCBA materials, this mouse is engineered to last, offering performance, practicality, and professional-grade features in one streamlined package.

FEATURES:

  • 4 adjustable speed levels for optimum accuracy up to 1600 DPI
  • 5 buttons and scroll wheel: left/right click, central click and front/back
  • Ergonomic braid with inclined design allowing natural position of hand and optimal comfort
  • Bluetooth® 3.0/5.0 and 2.4GHz wireless connection
  • Simple control of the cursor by the thumb reducing the movements to keep the wrist and forearm relaxed with a range of 10 meters
  • Silent clicks for a peaceful work environment
  • Double USB-A connectivity and USB Type-C
  • 300mAh rechargeable lithium battery

SPECIFICATIONS:

  • Material: ABS / PCBA
  • Connectivity:
    • Bluetooth® 3.0 and 5.0 wireless technology
    • 2,4 GHz wireless technology
    • USB Type-C & USB-A
    • Plug & Play
  • Buttons: 5 buttons & scroll wheel
  • Optical sensor switch: 800 / 1200 / 1600 DPI
  • Power : Rechargeable lithium battery 300MAh
  • Compatibility: Windows®, macOS®, ChromeOS™ & Android, USB-A & USB Type-C
  • Product dimensions: 11,5 x 9,2 x 7,1 cm
  • Product weight: 79 g

WHAT'S IN THE BOX:

  • Port Connect Bluetooth® + Wireless 1600 DPI Rechargeable Ergonomic Trackball Mouse x1
  • Wireless USB receiver x1
  • USB-A to USB Type-C converter x1
  • Charging USB Type-C cable - 80 cm 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

-30%
Port Connect MOUSE COLLECTION II WIRELESS Azur
Port

Port Connect MOUSE COLLECTION II WIRELESS Azur

R 139.00 R 199.00

Save R 60.00

In Stock

-33%
UGREEN Portable 2.4GHz Wireless Mouse - Black
Ugreen

UGREEN Portable 2.4GHz Wireless Mouse - Black

R 199.00 R 299.00

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