FSP ZENFAN 120mm ARGB PWM Smart Fan - Black - FSP | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
FSP

FSP ZENFAN 120mm ARGB PWM Smart Fan - Black

SKU: ZENFAN-BA
R 229.00 R 249.00
You save R 20.00 (8%)
In Stock
You save R 20.00 (8% off)

Quick Specs

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

Frequently Bought Together

Quick Specs

  • Maintains optimal case temperatures with an airflow of 57.61CFM.
  • Customise your system's lighting with vibrant ARGB LEDs.
  • Monitors fan speed and temperature via a digital display.
  • Reduces noise with HDB bearing for smooth, quiet operation.
  • Controls fan speed via PWM for efficient cooling.

Enhance Your System's Cooling and Aesthetics

The FSP ZENFAN 120mm ARGB PWM Smart Fan is the perfect solution for keeping your system cool while adding a touch of style. As high-performance case fans, they combine addressable RGB lighting and smart features. This fan is designed to enhance both the performance and appearance of your PC, ensuring optimal temperatures and stunning visuals.

Achieve Optimal Cooling Performance from your PC Cooling Fan

With a fan speed of 800-1600 RPM and an airflow of 57.61CFM, the FSP ZENFAN ensures efficient heat dissipation, keeping your components running at optimal temperatures. The PWM function allows for precise control over the fan speed, balancing cooling performance and noise levels. Experience superior cooling with this PC cooling fan.

Customise Your Lighting with ARGB LEDs

The addressable RGB LEDs provide vibrant and customisable lighting effects, allowing you to match your fan's lighting with the rest of your system. Create stunning visual effects and showcase your unique style with these vibrant case fans.

Monitor Fan Speed and Temperature

The built-in digital display shows real-time fan speed (RPM) and temperature, giving you valuable information about your system's performance. Keep an eye on your system's vitals and make adjustments as needed to maintain optimal cooling.

Enjoy Quiet Operation

The HDB bearing ensures smooth and quiet operation, reducing noise levels to just 26 dBA. Enjoy a distraction-free computing experience, even when your system is under heavy load. These case fans will keep your system cool and quiet.

Easy Installation

The FSP ZENFAN is easy to install and is recommended to be installed at the rear of your case. Its standard 120mm size ensures compatibility with most PC cases.

FEATURES:

  • Smart temperature display with intelligent fan speed control
  • Integrated thermal sensor for real-time monitoring
  • Angled screen design for optimal viewing angle
  • Extended form factor with zero component interference
  • Hydraulic dynamic bearing (HDB) for ultra-quiet operation
  • Dynamic ARGB lighting with sync support

SPECIFICATIONS:

  • Fan Speed: 800-1600 RPM (PWM) ± 10%
  • Bearing Type: HDB
  • Air Flow: 57.61CFM ± 10%
  • Static Pressure 1.48mmH2O ± 10%
  • Noise Level: 26 dBA ± 10%
  • Rated Voltage: 12V
  • Rated Current: 0.3A
  • Display: Digital Display(RPM & Temperature)
  • Colour: Black
  • Product Dimensions: 12 x 14 x 2.5 cm (Recommended to install at the rear)
  • Warranty: 1 year

WHAT'S IN THE BOX:

  • FSP ZENFAN 120mm ARGB PWM Smart Fan - Black x1

Why FSP

FSP is committed to delivering reliable and high-performance cooling solutions, including top-tier case fans. With a focus on innovation and quality, FSP products are designed to meet the demands of gamers, enthusiasts, and professionals alike. Trust FSP to keep your system running cool and efficiently with our premium PC cooling fan solutions.

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

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

Related Products

-12%
Antec ORBIT PWM 120mm ARGB Fan 3 Pack - Black
Antec

Antec ORBIT PWM 120mm ARGB Fan 3 Pack - Black

R 879.00 R 999.00

Save R 120.00

In Stock

-11%
PCBuilder TORNADO CHILL ARGB 120mm Fan Kit
PCBuilder

PCBuilder TORNADO CHILL ARGB 120mm Fan Kit

R 309.00 R 349.00

Save R 40.00

In Stock

-7%
PCBuilder Tempest Chill Fan Kit 3x120MM Dual Glow ARGB Fan + Controller + RF Remote
PCBuilder

PCBuilder Tempest Chill Fan Kit 3x120MM Dual Glow ARGB Fan + Controller + RF Remote

R 519.00 R 559.00

Save R 40.00

In Stock

-13%
DeepCool FL12 SE 120mm ARGB PWM Fan - Black
DEEPCOOL

DeepCool FL12 SE 120mm ARGB PWM Fan - Black

R 139.00 R 159.00

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