Redragon GCP06 24-Pin ARGB Extension Power Cable - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon GCP06 24-Pin ARGB Extension Power Cable

SKU: RD-GCP06
R 699.00
In Stock

24-Pin ATX | ARGB Sync | 5V 3-Pin | 18AWG | Dual-Side Lighting | Transparent PVC Quick Specs

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

Frequently Bought Together

24-Pin ATX | ARGB Sync | 5V 3-Pin | 18AWG | Dual-Side Lighting | Transparent PVC

Quick Specs

  • Illuminate your entire 24-pin run with vivid addressable RGB lighting
  • Sync seamlessly with your motherboard through the standard 5V 3-pin ARGB header
  • Glow from both faces thanks to dual lighting PCB boards
  • Customise endless effects via your existing ARGB control software
  • Sleeve cleanly with 16-spindle bright-coloured aluminium foil braiding

Turn Your Power Cable Into a Centrepiece

The Redragon GCP06 transforms an everyday motherboard power run into the brightest feature of your build. Sitting in front of your existing 24-pin ATX cable, this 24-pin ARGB extension cable floods your case with smooth, addressable colour that flows the full length of the connector span — turning dead cable space into a deliberate design statement.

Plug-and-Play ARGB Sync

Fitted with standard 5V 3-pin ARGB connectors, the GCP06 plugs straight into your motherboard’s addressable header and falls in line with your wider lighting scheme. Whether you run ASUS Aura Sync, MSI Mystic Light, Gigabyte RGB Fusion or ASRock Polychrome, this ARGB power cable picks up the same effects, speeds and colours as the rest of your components — no separate software to wrestle with.

Built to Be Seen From Every Angle

Lighting PCB boards on both sides mean the GCP06 looks just as good whether your case is glass-on-the-left or stood on a desk in full view. The transparent PVC jacket lets every colour read true, while the 16-spindle braided sleeving in bright-coloured aluminium foil keeps the whole run crisp and tidy. With multiple lighting configurations on tap, it’s easy to land on a look that suits your setup.

FEATURES:

  • 24-pin ATX extension cable with integrated addressable RGB lighting
  • 5V 3-pin ARGB connectors supporting motherboard ARGB sync
  • Dual lighting PCB boards for illumination on both sides
  • Multiple lighting configurations and effects
  • 18AWG conductor gauge for the full 24-pin run
  • 16-spindle braided sleeving in bright-coloured aluminium foil (PET)
  • Transparent PVC jacket with PVC insulation

SPECIFICATIONS:

  • Connector Type: 5V 3-pin (ARGB)
  • Conductor Gauge: 18AWG
  • Conductor Size: 163/0.08
  • Conductor Lay of Stranded: 30
  • Braid Material: Bright-coloured aluminium foil (PET)
  • Braid Size: 16-spindle braid
  • Insulation Material: PVC
  • Jacket Material: PVC
  • Insulation Diameter: 1.7 mm
  • Jacket Diameter: 2.4 ±0.1 mm
  • Jacket Colour: Transparent PVC
  • ARGB Control: Via motherboard ARGB software (no dedicated software required)
  • Product Dimensions: 30 x 9.3 x 3.2 cm (giftbox)
  • Product Weight: 183.75 g (with giftbox)

WHAT'S IN THE BOX:

  • Redragon GCP06 24-Pin ARGB Extension Power Cable x1

Why Redragon?

Redragon has earned a loyal following among South African PC builders for delivering eye-catching gear that doesn’t punish your budget, and the GCP06 24-pin ARGB extension cable is a perfect example. It’s an affordable way to lift a local build from functional to head-turning, syncing neatly with the ARGB ecosystem you already run. If you’re after an ARGB power cable that adds genuine wow factor without the premium price tag, the GCP06 is a smart, easy upgrade.

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

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

Related Products

PWR Dedicated to Clover Cable 1.8m
OEM

PWR Dedicated to Clover Cable 1.8m

R 59.00

In Stock

PWR Dedicated to 3 Headed Cable 3.8m
OEM

PWR Dedicated to 3 Headed Cable 3.8m

R 139.00

In Stock

PWR Dedicated to Clover and Kettle Cable 2.8m
OEM

PWR Dedicated to Clover and Kettle Cable 2.8m

R 79.00

Out of 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!