UGREEN Lightbuds Basic Earphones (Semi In-Ear)–White - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN Lightbuds Basic Earphones (Semi In-Ear)–White

SKU: WS217-65876
R 399.00 R 599.00
You save R 200.00 (33%)
In Stock
You save R 200.00 (33% off)

Wireless Earbuds | 35H Battery | IPX5 Waterproof | Spatial Sound | Low Latency Quick Specs

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

Frequently Bought Together

Wireless Earbuds | 35H Battery | IPX5 Waterproof | Spatial Sound | Low Latency

Quick Specs

  • Experience audio clarity certified by UGreen Golden Sound.
  • Enjoy up to 35 hours of total playback time with the charging case.
  • Connect instantly with stable Bluetooth V6.0 connectivity.
  • Benefit from IPX5 waterproofing for protection against sweat and light rain.
  • Control your experience easily using intuitive touch controls.

The duel for clarity: Audio without illusion

This UGreen Lightbuds Basic model is forged for the everyday user in South Africa; the commuter, the remote worker, and the casual listener who demands reliable performance from their semi in-ear headphones without excessive complexity. If you seek sound that is honest and connectivity that does not falter during vital moments, this is your instrument.

Solving the disconnect: Steady performance assured

The primary conflict in wireless audio is instability. These semi in-ear headphones counter this with Bluetooth V6.0, ensuring a robust link to your device. Furthermore, the measured 80ms latency delivers a noticeable advantage for watching videos or engaging in mobile gaming, keeping sound aligned with action, which is enhanced by the earphones dual connection feature.

The value proposition: Proven sound and endurance

These earphones do not merely play sound; they deliver UGreen Golden Sound Certified audio, meaning the internal tuning has been scrutinised for fidelity in these semi in-ear headphones. With 6.5 hours of single-charge playback, extended by the 500mAh charging box to a total of 35 hours, the burden of constant recharging is lifted.

Durability built for the local terrain

The IPX5 rating stands as a testament to resilience: light rain, perspiration from movement, or accidental splashes are met with indifference. This durability is further secured by a comprehensive 24-month warranty, protecting your investment against defects in your semi in-ear headphones.

The demand: Seamless integration and dual connection

Users require control without complexity. The inclusion of earphones dual connection means switching between your phone and your laptop is managed without re-pairing. The visual feedback of the charging box light display offers immediate status checks, confirming the power level at a glance for your semi in-ear headphones.

Features

  • Integrate flawlessly with your existing devices by utilising the earphones dual connection feature to link to two sources simultaneously.
  • Maintain audio synchronization with a confirmed low latency of 80ms during media playback on your semi in-ear headphones.
  • Assess the charging status immediately via the distinct light effect display on the charging box exterior.
  • Manage calls and music playback swiftly using simple double-tap commands on these semi in-ear headphones.
  • Activate your device's voice assistant or change modes by using the triple-tap function.
  • Sculpt your listening environment by enabling the spatial sound effect through the UGREEN App.
  • Recharge quickly using the universal Type-C port, ensuring minimal downtime for your listening sessions.
  • Protect your investment against moisture, as the IPX5 rating handles sweat and light precipitation for your semi in-ear headphones.

Specifications

  • Bluetooth Version: V6.0
  • Earphones Battery: 40mAh
  • Charging Case: 500mAh
  • Single charge playback: 6.5 hours
  • Total with case: 35 hours
  • Low Latency: 80ms
  • App Support: UGreen App for Customisation
  • Dual device connection: Support
  • Charging method: Type-C wired charging
  • Waterproof level: IPX5
  • Warranty: 24 Months

What's in the Box

  • 1x UGreen Lightbuds Basic Earphones (Semi In-Ear)–White
  • 1x USB Type-C Charging Cable
  • 1x User Manual

Why UGreen

UGreen has established its presence by focusing on dependable connectivity and thoughtful utility. In the South African market, where consistent performance under varying conditions is paramount, UGreen delivers components that endure the daily test of modern mobile life, ensuring the connection you rely upon is solid, certified, and supported by a clear commitment to quality. This focus on stable links is vital for users relying on semi in-ear headphones for work and entertainment.

Brand Ugreen
Colour -
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

-33%
WINX VIBE Active 2 Hybrid ANC Earbuds
WINX

WINX VIBE Active 2 Hybrid ANC Earbuds

R 269.00 R 399.00

Save R 130.00

In Stock

-35%
UGREEN HiTune P3 In-Ear Wireless Earbuds–White
Ugreen

UGREEN HiTune P3 In-Ear Wireless Earbuds–White

R 379.00 R 579.00

Save R 200.00

In Stock

-34%
UGREEN HiTune S5 Open-Ear TWS Earbuds–Black
Ugreen

UGREEN HiTune S5 Open-Ear TWS Earbuds–Black

R 529.00 R 799.00

Save R 270.00

In Stock

-20%
WINX VIBE More Adaptive ANC Earpods
WINX

WINX VIBE More Adaptive ANC Earpods

R 399.00 R 499.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!