WINX VIBE More Adaptive ANC Earpods - WINX | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
WINX

WINX VIBE More Adaptive ANC Earpods

SKU: WX-HS111
R 399.00 R 499.00
You save R 100.00 (20%)
In Stock
You save R 100.00 (20% off)

Dive into a world of high-fidelity audio with the WINX VIBE More Adaptive ANC Earpods, the latest innovation in the WINX lineup. These earpods are designed to elevate your listening experience, whether you're a music enthusiast, a podcast lover, or someone who values crystal-clear audio during...

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

Frequently Bought Together

Dive into a world of high-fidelity audio with the WINX VIBE More Adaptive ANC Earpods, the latest innovation in the WINX lineup. These earpods are designed to elevate your listening experience, whether you're a music enthusiast, a podcast lover, or someone who values crystal-clear audio during calls. Equipped with Bluetooth version 5.3, these earpods ensure a stable and seamless connection within a range of 10 metres, providing you with uninterrupted audio throughout your day. The WINX VIBE More Adaptive ANC Earpods feature AI adaptive audio technology and adaptive Active Noise Cancellation (ANC) technology to deliver precise low-frequency compensation to ensure audio is rich and detailed, whatever your listening environment.

FEATURES:

  • AI adaptive audio technology delivers precise low-frequency compensation to ensure audio is rich and detailed, whatever your listening environment
  • Adaptive Active Noise Cancellation (ANC) eliminates up to 25dB of environmental noise
  • Adaptive wind noise cancellation reduces the effects of ambient wind noise whether you're listening to your favourite beats or in an important business call
  • Charge within 2 hours
  • Up to 22 hours playtime (including charging case)*
  • 6-Microphone array with AI-based noise cancellation ensures crystal clear calls
  • IPX5 sweat & water resistance rating
  • Pair with up to 2 devices simultaneously
  • Intuitive touch controls
  • Earbud's 50° angle design ensures secure & comfortable fit for extended listening sessions

SPECIFICATIONS:

  • Bluetooth version: V5.3
  • Bluetooth profile: A2DP, AVRCP, HFP
  • Bluetooth transmission range: 10 metres
  • Speaker frequency: 20-20KHz
  • Speaker impedance: 32Ω±15%
  • Speaker size: 13mm
  • Sensitivity: 103±3dB
  • Audio latency: 80 milliseconds
  • Audio codecs: SBC
  • Noise cancellation: Adaptive ANC (up to 25dB reduction)
  • Microphone: 6-Microphone array (with AI noise cancellation)
  • Battery (charging case only): 350mAh
  • Battery (earbuds only): 27mAh
  • Charging input: Type-C port (5V/500mA)
  • Charging time: Up to 2 hours
  • Playtime with ANC on: Up to 15 hours (including charging case)* / Up to 4 hours (earbuds only)*
  • Playtime with ANC off: Up to 22 hours (including charging case)* / Up to 5.5 hours (earbuds only)*
  • Ingress Protection (IP) rating: IPX5
  • Compatibility: iOS/Android
  • Product dimensions: 5.1 x 2.8 x 5.1 cm
  • Product weight (charging case and earbuds): 37.2g
  • *When Device is fully charged with ANC

WHAT'S IN THE BOX:

  • WINX VIBE More Adaptive ANC Earpods x1
  • Type-C Charging Cable x1
  • User Manual x1
Brand WINX
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

-33%
UGREEN HiTune S3 Wireless Earclip Earbuds–Black
Ugreen

UGREEN HiTune S3 Wireless Earclip Earbuds–Black

R 389.00 R 579.00

Save R 190.00

In Stock

-30%
WINX VIBE Active 2 TWS Earbuds
WINX

WINX VIBE Active 2 TWS Earbuds

R 209.00 R 299.00

Save R 90.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 EchoBuds Magic Wireless (In-Ear Earphones)–White
Ugreen

UGREEN EchoBuds Magic Wireless (In-Ear Earphones)–White

R 859.00 R 1 299.00

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