CORSAIR VOID WIRELESS v2 Gaming Headset - Carbon - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

CORSAIR VOID WIRELESS v2 Gaming Headset - Carbon

SKU: CA-9011379-WW
R 2 908.33
Available on Backorder

Endurance-class wireless audio | Multi-mode connectivity across platforms | 50mm drivers for immersive sound | Up to 130 hours battery life | iCUE software control

This item is on backorder — new stock is expected around 14 Sep 2026. Order now and we'll ship yours as soon as it arrives.

Free shipping over R 3 450.00
Secure checkout
14-day returns
Expert support
Secure payment — PayFast & Yoco · 256-bit SSL encrypted

Frequently Bought Together

Endurance-class wireless audio | Multi-mode connectivity across platforms | 50mm drivers for immersive sound | Up to 130 hours battery life | iCUE software control

Quick Specs

  • Enjoy up to 70 hours of wireless gaming on a single charge via 2.4GHz — or up to 130 hours over Bluetooth.
  • Experience rich, detailed audio through large 50mm headphone drivers built for immersive soundscapes.
  • Connect across PC, Mac, PS4/5, and mobile with true multi-mode wireless versatility.
  • Communicate with confidence via the fixed boom microphone, featuring an omni-directional pickup pattern.
  • Tune and customise your audio experience with Corsair's iCUE software integration.

Dominate Every Session with the CORSAIR VOID WIRELESS v2

Hear everything around you in your favourite games with Dolby Atmos® Spatial Audio. Play more with a long-lasting battery and ultra-fast wireless connectivity.

The CORSAIR VOID WIRELESS v2 gaming headset in Carbon Black is engineered for the South African gamer who refuses to be tethered — or interrupted. Built around 50mm headphone drivers, multi-mode wireless connectivity, and an extraordinary battery life, this headset is designed to keep you locked in from the first round to the last, night after night.

Battery Life That Outlasts Your Longest Sessions

Tired of your headset dying mid-match? The VOID WIRELESS v2 delivers up to 70 hours of wireless runtime over its 2.4GHz USB connection, and an astonishing up to 130 hours when connected via Bluetooth. Whether you're grinding through a marathon weekend or moving from your PC to your mobile device, you'll spend less time on the charger and more time in the game.

Precision Audio, Engineered for the Competitive Edge

At the heart of the VOID WIRELESS v2 are 50mm headphone drivers delivering a wide frequency response of 20Hz to 20kHz, with a sensitivity of 116dB (+/-3dB) and an impedance of 32k Ohms at 1kHz. The result is audio that renders every footstep, every environmental cue, and every in-game detail with the clarity your performance demands. This is sound that becomes a tactical advantage.

Versatile Connectivity, One Headset for Every Platform

The VOID WIRELESS v2 is built for a multi-platform world. Its multi-mode connection supports PC, Mac, PS4/5, and mobile, giving you a single headset that travels seamlessly between your gaming rig and your mobile device. The included USB wireless transmitter ensures a stable, low-latency link, while Bluetooth extends your reach even further. Pair it with Corsair's iCUE software on PC or Mac to fine-tune your audio profile exactly the way you want it.

Features

  • Up to 70 hours battery life on 2.4GHz wireless; up to 130 hours via Bluetooth — endurance built for extended play.
  • 50mm headphone drivers with a 20Hz–20kHz frequency response for detailed, immersive audio.
  • Multi-mode wireless connection: USB wireless receiver and Bluetooth for platform flexibility.
  • Compatible with PC, Mac, PS4/5, and mobile devices.
  • Fixed omni-directional boom microphone with -40dB (+/-3dB) sensitivity and 100Hz–8kHz frequency response.
  • Wireless range of up to 50ft (approximately 15m) via USB wireless transmitter.
  • Corsair iCUE software compatible for audio customisation on PC and Mac.
  • Lightweight at 303g for sustained comfort during long gaming sessions.

Specifications

  • Brand: Corsair
  • Model Number: VOID V2 WRS USB CARBON
  • Colour: Black
  • Warranty: 24 Months
  • Product Weight: 300g
  • Connection: Multi-mode
  • Driver Size: 50mm
  • Microphone Type: Fixed Boom
  • Battery Life: Up to 70 hours (2.4GHz), Up to 130 hours (Bluetooth)
  • Platform Compatibility: PC, Mac, PS4/5, Mobile
  • Weight: 300g

What's in the Box

  • CORSAIR VOID WIRELESS v2 Gaming Headset - Carbon x1
  • USB Wireless Transmitter x1
  • USB Charging Cable, 0.5m x1
  • Warranty Card x1

Why Corsair

Corsair has spent decades engineering high-performance peripherals trusted by competitive gamers and PC enthusiasts around the world. From their precision-tuned audio hardware to iCUE software integration, every Corsair product is built to deliver a genuine edge — making them a go-to choice for the discerning South African gamer who demands reliability, performance, and longevity from their setup.

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

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

Related Products

// 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!