Redragon FIZZ Magnetic+ Wired 60% Gaming Keyboard - Redragon | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Redragon

Redragon FIZZ Magnetic+ Wired 60% Gaming Keyboard

SKU: RD-K617GGB-RGB-MP
R 624.27
In Stock

Magnetic switch precision in a compact 60% form | 8000Hz polling for near-zero latency | Hot-swappable and fully customisable | Built for the competitive South African gamer

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

Frequently Bought Together

Magnetic switch precision in a compact 60% form | 8000Hz polling for near-zero latency | Hot-swappable and fully customisable | Built for the competitive South African gamer

Quick Specs

  • Dominate every keystroke with Redragon's custom magnetic switches supporting 0.01mm travel adjustment for pinpoint actuation control.
  • Achieve blistering response times with an 8000Hz max report rate, driving keyboard latency down to just 0.125ms.
  • Customise your battlefield with per-key programmable RGB backlighting that makes your setup uniquely yours.
  • Swap switches on the fly with hot-swappable sockets — tailor your feel without soldering.
  • Take the fight anywhere with a compact 60% layout and an iconic branded portable strap included in the box.

Command Every Match with the Redragon FIZZ Magnetic+

The Redragon FIZZ Magnetic+ is a wired 60% gaming keyboard engineered for the discerning South African gamer who refuses to compromise on performance or portability. Built around Redragon's custom linear magnetic switches, it delivers a level of precision and consistency that traditional mechanical switches simply cannot match — all packed into a sleek grey and black chassis that takes up minimal desk real estate without sacrificing any competitive edge.

Precision That Reacts Before You Think

Tired of feeling like your keyboard is holding you back? The FIZZ Magnetic+ changes that. Redragon's custom magnetic switches support an astonishing 0.01mm travel adjustment, letting you dial in your actuation point with surgical accuracy. Paired with an 8000Hz maximum report rate — lowering latency to just 0.125ms — every input is registered almost instantaneously. In fast-paced competitive titles, that margin is the difference between victory and defeat.

Hot-Swappable Freedom — Your Build, Your Rules

The FIZZ Magnetic+ features fully hot-swappable sockets, meaning you can pull and replace switches in seconds without a soldering iron in sight. Four extra magnetic switches are included in the box so you can experiment immediately. Durable PBT keycaps provide a satisfying texture and long-lasting legends, while the ABS chassis keeps the overall build lightweight at just 547g.

Programmable RGB and a Personality All Your Own

Stand out from the crowd with fully programmable per-key RGB backlighting that lets you craft a light show as unique as your playstyle. Software support — including web-based configuration — means you can customise lighting profiles, key bindings, and macros without being tethered to a single PC. Compatible with both Windows and macOS, the FIZZ Magnetic+ slots seamlessly into any setup. The iconic Redragon portable strap adds a distinctive finishing touch and makes carrying your keyboard to LAN events or a friend's place effortless.

Features

  • Redragon custom linear magnetic switches with 0.01mm travel adjustment for precise actuation control.
  • 8000Hz maximum report rate reduces keyboard latency to as low as 0.125ms for near-instantaneous response.
  • Hot-swappable switch sockets — swap or replace switches tool-free at any time.
  • Fully programmable per-key RGB backlighting with web-based and software configuration.
  • Compact 60% layout with 61 keys frees up desk space for wider mouse movement.
  • Durable PBT keycaps for superior texture, longevity, and shine resistance.
  • USB-C connectivity via a 150cm PVC-braided cable.
  • Compatible with Windows and macOS operating systems.
  • Iconic branded portable strap included for easy transport.

Specifications

  • Keyboard Size: 60%
  • Switch Type: Magnetic switch (Linear)
  • Connection: Wired
  • Backlighting: RGB
  • Hot-Swappable Switches: true
  • Keycap Material: PBT+ABS
  • Layout: English (US)
  • Colour: Grey/Black
  • Warranty: 18 months
  • Product Dimensions: 29.9 x 10.2 x 3.5 cm
  • Product Weight: 547g

What's in the Box

  • Redragon FIZZ Magnetic+ Wired 60% Gaming Keyboard – Grey/Black x1
  • USB Cable x1
  • Extra magnetic switches x4
  • Switch puller x1
  • Keycap puller x1
  • Portable strap x1
  • User manual x1

Why Redragon

Redragon is dedicated to empowering gamers with high-performance, reliable peripherals that deliver exceptional value. From magnetic switch technology to customisable RGB lighting, every product is built to give South African gamers a genuine competitive edge — without the premium price tag.

Brand Redragon
Colour Grey/Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 18
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!