UGREEN M511 Ergonomic 2.4GHz Wireless Mouse - Black - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN M511 Ergonomic 2.4GHz Wireless Mouse - Black

SKU: M511-45012
R 139.00 R 199.00
You save R 60.00 (30%)
In Stock
You save R 60.00 (30% off)

Quick Specs

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

Frequently Bought Together

Quick Specs

  • Offers adjustable DPI settings for personalised sensitivity.
  • Features 2.4GHz wireless connectivity for reliable performance.
  • Provides up to 12 months of battery life, minimising interruptions.
  • Delivers an ergonomic design promoting comfortable all-day use.
  • Works seamlessly within a 15-meter range for flexible use.

A Comfortable and Productive Workspace

The UGreen M511 ergonomic mouse is designed to promote a natural wrist and hand position, reducing strain during long work sessions. Ideal for office professionals, students, and anyone spending extended periods at their computer, this ergonomic wireless mouse enhances comfort and productivity.

Customise Your Mouse Sensitivity

Adapt the mouse's sensitivity to match your workflow using the adjustable DPI settings. Switch between 800, 1200, and 1600 DPI to find the perfect level of precision for tasks ranging from detailed graphic design to everyday browsing. This ergonomic mouse ensures a tailored experience.

Uninterrupted Wireless Performance

Enjoy a stable and reliable connection with 2.4GHz wireless technology. The UGreen M511 ergonomic wireless mouse offers a working range of up to 15 meters, giving you the freedom to move around your workspace without losing connectivity. Experience seamless performance with this ergonomic mouse.

Long-lasting Battery Life

Engineered for efficiency, the UGreen M511 ergonomic wireless mouse offers up to 12 months of use on just two AAA batteries. This extended battery life minimizes the need for frequent changes, ensuring uninterrupted productivity. Enjoy long-lasting performance with this ergonomic mouse.

Sleek and Practical Design

With its classic black finish and carefully considered dimensions, the UGreen M511 ergonomic mouse blends seamlessly into any office or home environment. Its compact size makes it easy to transport, allowing you to take your comfort and productivity on the go. South Africa, enhance your workday with this ergonomic wireless mouse today!

FEATURES:

  • Experience enhanced comfort, thanks to the ergonomic mouse design that reduces wrist strain.
  • Customise cursor speed by choosing between 800, 1200, and 1600 DPI settings.
  • Enjoy a stable connection using the reliable 2.4GHz wireless technology.
  • Move freely within a 15-meter range, enhancing flexibility and convenience.
  • Minimise battery changes with up to 12 months of battery life from 2x AAA batteries.
  • Benefit from broad compatibility with various operating systems and devices.

SPECIFICATIONS:

  • Connection: 2.4GHz Wireless Technology
  • Wireless Range: 15M (without interference)
  • DPI levels: 800 / 1200 / 1600 DPI
  • Battery Life: Up to 12 months
  • Battery Capacity: 2 x AAA batteries
  • Colour: Black
  • Product Dimensions: 12 x 7.5 x 4.4 cm

WHAT'S IN THE BOX:

  • UGreen M511 Ergonomic 2.4GHz Wireless Mouse - Black x1
  • USB Wireless Receiver x1

Why UGreen?

UGreen is committed to delivering high-quality, reliable accessories that enhance your digital lifestyle. With a focus on innovation and user satisfaction, UGreen products, like this ergonomic wireless mouse, are designed to provide exceptional performance and durability. Whether you're working from home or in the office in South Africa, UGreen provides the tools you need to stay connected and productive. Choose UGreen for your ergonomic mouse needs.

Brand Ugreen
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

-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 Silent 1600DPI 3 Button Wireless Mouse - White
Port

Port Connect Silent 1600DPI 3 Button Wireless Mouse - White

R 209.00 R 289.00

Save R 80.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

-21%
Port Connect Bluetooth Wireless and Rechargeable Executive Mouse - Black
Port

Port Connect Bluetooth Wireless and Rechargeable Executive Mouse - Black

R 769.00 R 979.00

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