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

Port Connect 2.4GHz Wireless ERGO SOFT Bluetooth Rechargeable Mouse

SKU: 910200
R 479.00 R 609.00
You save R 130.00 (21%)
In Stock
You save R 130.00 (21% off)

The Port Connect 2.4GHz Wireless ERGO SOFT Bluetooth Mouse has been designed to improve your daily comfort. Its inclined design promotes a natural hand position, thus reducing muscle tension and fatigue due to long working hours. Thanks to this advanced ergonomics, you can work, navigate or play...

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

Frequently Bought Together

The Port Connect 2.4GHz Wireless ERGO SOFT Bluetooth Mouse has been designed to improve your daily comfort. Its inclined design promotes a natural hand position, thus reducing muscle tension and fatigue due to long working hours. Thanks to this advanced ergonomics, you can work, navigate or play longer without discomfort. Perfectly suited for extended use, the ERGO SOFT combines comfort and performance.

This mouse offers dual connectivity thanks to 2.4GHz and Bluetooth® wireless technology. It connects to three devices simultaneously, this flexibility allows you to switch from a laptop to a tablet or smartphone effortlessly. Whether you're at the office or on the move, the ERGO SOFT ensures optimal productivity without cumbersome cables.

With its optical sensor adjustable between 800, 1200 and 1600 DPI, the ERGO SOFT mouse adapts to all your speed and precision preferences, whether for office tasks or more demanding activities. Its silent clicks guarantee a peaceful working environment, ideal for shared spaces or telework. You benefit from a fluid, discreet and ultra-reactive user experience.

Equipped with a rechargeable battery via Type-C cable, the ERGO SOFT mouse combines performance and respect for the environment. Automatic sleep mode and ON/OFF switch allow you to optimize battery life, reducing frequent charging. In addition, it is compatible with a wide range of operating systems, including Windows®, macOS®, Chrome OS™ and Android™, ensuring extended compatibility and ease of use.

The rechargeable 2.4GHz & Bluetooth® wireless ERGO SOFT mouse is an ideal solution for those looking for ergonomics, performance and multi-device connectivity. Designed for comfortable daily use, it is distinguished by its high autonomy, ergonomic design and advanced features. Enjoy silent clicks, adjustable accuracy and universal compatibility. With a 3-year warranty, it is the perfect companion to improve your productivity at home or the office.

FEATURES:

  • 2.4 GHz Wireless and Bluetooth®
  • Integrated rechargeable battery with Type-C charging cable
  • Optical sensor with adjustable speed 800 /1200 /1600 DPI
  • Silent clicks for a peaceful working environment
  • 5 buttons and one scroll wheel
  • Warranty: 3 years

SPECIFICATIONS:

  • Material: ABS / PCBA
  • Buttons: 5 buttons & scroll wheel
  • Connectivity: Bluetooth® | 2,4 GHz wireless technology | USB-A | Type-C connectivity
  • Max power radio frequency: -4,29 dBm
  • Frequency range: 2402MHz - 2480MHz
  • Optical sensor switch: 8000/1200/1600 DPI
  • Battery capacity: 500mAh
  • Compatibility: Windows®, macOS®, Chrome OS™ & Android™
  • Product dimension: 11,5 x 9,3 x 7,5 cm
  • Product weight: 124 g

WHAT'S IN THE BOX:

  • Port Connect 2.4GHz Wireless ERGO SOFT Bluetooth Rechargeable Mouse x 1
  • Wireless USB receiver x 1
  • USB-A to Type-C converter x 1
  • Charging Type-C cable - 80cm x 1
  • User Manual x 1
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

-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

-28%
Port Connect Silent 1600DPI 3 Button Wireless Mouse - Black
Port

Port Connect Silent 1600DPI 3 Button Wireless Mouse - Black

R 209.00 R 289.00

Save R 80.00

In Stock

-26%
Port Connect Expert Wireless Bluetooth® Mouse
Port

Port Connect Expert Wireless Bluetooth® Mouse

R 409.00 R 549.00

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