Redragon RM104 PRO VOLCANO RGB Wireless Membrane Gaming Keyboard - Black - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

Redragon RM104 PRO VOLCANO RGB Wireless Membrane Gaming Keyboard - Black

SKU: RD-K526-PRO
R 520.45
Available on Backorder

Tri-mode wireless freedom | 4000 mAh battery | Full-size RGB membrane | Real-time status display | Multi-function control knob

This item is on backorder — new stock is expected around 7 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

Tri-mode wireless freedom | 4000 mAh battery | Full-size RGB membrane | Real-time status display | Multi-function control knob

Quick Specs

  • Connect your way with tri-mode connectivity — wired USB, 2.4G wireless, or Bluetooth — for lag-free gaming on any setup.
  • Game longer with a built-in 4000 mAh battery keeping you in the fight without constantly reaching for a cable.
  • Control your experience instantly with a multi-function knob to adjust volume and backlight brightness on the fly.
  • Stay informed at a glance with a real-time power and connection status display built into the keyboard.
  • Illuminate your battlestation with vibrant per-key RGB backlighting across all 104 full-size keys.

Command the Battlefield Without Being Tethered

The Redragon RM104 PRO VOLCANO is a full-size tri-mode wireless membrane gaming keyboard built for the South African gamer who demands flexibility, endurance, and a commanding presence on the desk. Whether you're deep in a late-night session or switching between rigs, the VOLCANO PRO has you covered with three connection modes and a battery that won't quit.

Three Modes, Zero Compromises on Response

Tired of fumbling with cables mid-session or losing connection at the worst possible moment? The RM104 PRO delivers low-latency tri-mode connectivity — plug in via the 150 cm PVC cable for wired stability, switch to 2.4G wireless for the fastest untethered response, or pair over Bluetooth for convenient multi-device flexibility. Switching between modes is instant, keeping your focus where it belongs: on the game.

Stay Powered, Stay in Control

The built-in 4000 mAh lithium battery is engineered to keep you gaming for extended sessions without interruption. A real-time power and connection display lets you monitor battery level and active connection mode at a glance — no guessing, no surprise shutdowns. When you do need to recharge, simply plug in the USB cable and keep playing in wired mode without skipping a beat.

RGB Ambience, Precision at Your Fingertips

All 104 keys blaze with vibrant RGB backlighting, letting you customise your setup's atmosphere to match your playstyle. The dedicated multi-function knob gives you instant, tactile control over volume and backlight brightness without breaking your flow. A single-toggle switch lets you flip between Windows and Mac shortcut key layouts effortlessly, and software support opens up further personalisation for lighting and key configuration.

Features

  • Tri-mode connectivity: wired USB, 2.4G wireless, and Bluetooth for versatile, low-latency performance.
  • Large 4000 mAh built-in lithium battery for extended wireless gaming sessions.
  • Real-time power and connection status display for at-a-glance monitoring.
  • Multi-function knob for quick adjustment of volume and backlight brightness.
  • Full RGB backlighting across all 104 keys for immersive desk aesthetics.
  • Windows/Mac shortcut key support with a convenient one-toggle switch.
  • Software compatible for further customisation of lighting and key functions.
  • 150 cm PVC USB cable included for wired mode and charging.

Specifications

  • Keyboard Size: Full-size
  • Switch Type: Membrane
  • Connection: Tri-mode
  • Backlighting: RGB
  • Hot-Swappable Switches: No
  • Keycap Material: ABS
  • Battery Capacity: 4000mAh
  • Layout: English (US)
  • Colour: Black
  • Warranty: 18 months
  • Product Weight: 713g
  • Product Dimensions: 44.6 x 14 x 3.9 cm

What's in the Box

  • Redragon RM104 PRO VOLCANO RGB Wireless Membrane Gaming Keyboard - Black x1
  • USB Cable x1

Why Redragon

Redragon is dedicated to empowering gamers with high-performance, reliable peripherals that deliver exceptional value without compromise — the trusted choice for gamers across South Africa who want to elevate their setup and dominate every session without breaking the bank.

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!