PXN V900 Gen2 Gaming Steering Wheel - PXN | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
PXN

PXN V900 Gen2 Gaming Steering Wheel

SKU: PXN-V900GEN2
R 1 759.00 R 2 299.00
You save R 540.00 (23%)
In Stock
You save R 540.00 (23% off)

Get ready to dominate the track with the PXN V900 Gen 2 Gaming Steering Wheel, engineered to deliver a professional-grade racing experience with next-level responsiveness, realism, and control. Featuring adaptive dual-motor vibration and high-precision 16-bit magnetic encoder technology, the V900...

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

Frequently Bought Together

Get ready to dominate the track with the PXN V900 Gen 2 Gaming Steering Wheel, engineered to deliver a professional-grade racing experience with next-level responsiveness, realism, and control. Featuring adaptive dual-motor vibration and high-precision 16-bit magnetic encoder technology, the V900 Gen 2 captures every twist, drift, and turn with unmatched accuracy. Whether you're in the heat of a Formula 1 showdown or maneuvering tight corners in a rally stage, this steering wheel reacts in real time, providing you with immersive, multi-level tactile feedback that puts you right in the driver’s seat.

Built for serious sim racers, the PXN V900 Gen 2 offers physical switching between 270° and 900° of steering rotation, allowing seamless adaptation for arcade racers or ultra-realistic driving simulators. At 900°, you get a full 2.5-turn range—matching real-world steering wheels for accurate simulation. The 16-bit magnetic encoder sensor ensures micro-precision steering control, detecting even the slightest input with exceptional fidelity. Paired with dual vibration motors, the wheel dynamically adjusts the vibration output based on in-game physics, road texture, and vehicle handling.

Feel the thrill of race-day design with Formula-style ABS paddle shifters that deliver crisp, smooth gear changes through a finger-slide action. The 28cm professional wheel design is wrapped in soft-touch TPU rubber grips, providing a fine textured finish that resists hand sweat and enhances long-session comfort. Two RGB light bars on either side of the wheel display real-time feedback for throttle and brake input, blending function and futuristic style for a cyber-inspired racing experience.

Equipped with hall magnetic linear pedals, the V900 Gen 2 detects varying levels of pressure, offering nuanced throttle and brake control that adapts to your footwork with precision. A folding pedal texture and anti-slip base keep the unit stable underfoot, even during aggressive gameplay. With USB wired plug-and-play functionality, the PXN V900 Gen 2 supports multiple platforms for a broad range of racing titles from arcade favourites to sim-level realism.

FEATURES:

  • Switch between 270 and 900 degrees of steering wheel rotation
  • 16-bit Magnetic Encoder for more precise movement of the wheel in real time
  • High precision racing dual-paddle design
  • Hall magnetic linear 2 foot pedal
  • Built-in dual vibration motors for realism
  • Support for multiple platforms
  • Cyber style RGB lighting effect
  • Wired connection with plug and play
  • Compatible with PC, PS3, PS4, Xbox one, and Xbox Series X|S

SPECIFICATIONS:

  • Base Sensor: 16-bit
  • Connection Type: USB Wired Connection
  • Working Voltage: 5V
  • Working Current: 80mA during normal use, <150mA during vibration, <500mA during controller guidance
  • Usage Temperature: 10 – 40°C
  • Usage Humidity: 20 – 80%
  • Colour: Black
  • Compatibility:  PC, PS3, PS4, Xbox one, and Xbox Series X|S
  • Product Dimensions(Steering Wheel): 28 x 34.1 x 28.5 cm
  • Product Weight(Steering Wheel): 2270g
  • Product Dimensions(2 Foot Pedals): 23.2 x 18.3 x 14 cm
  • Product Weight(2 Foot Pedal): 845g

WHAT’S IN THE BOX:

  • PXN V900 Gen2 Gaming Steering Wheel – Black x1
  • 2 Foot Hall Magnetic Pedal x1
  • Steering Wheel Clamps x2
  • Type-C to USB-A Cable x2
  • Micro USB to USB-A Cable x1
  • User Manual x1
Brand PXN
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

-19%
PXN VD6 Direct Drive Sim Racing Wheel | PD-HM Dual Pedal | Z9 Clamp Bundle
PXN

PXN VD6 Direct Drive Sim Racing Wheel | PD-HM Dual Pedal | Z9 Clamp Bundle

R 8 119.00 R 9 999.00

Save R 1 880.00

In Stock

-21%
PXN V10 Ultra 270/900° 3.2nm Direct Drive USB Steering Wheel with Hall Effect Dual Pedals
PXN

PXN V10 Ultra 270/900° 3.2nm Direct Drive USB Steering Wheel with Hall Effect Dual Pedals

R 4 739.00 R 5 999.00

Save R 1 260.00

In Stock

-19%
PXN V9 Gen 2 Gaming Steering Wheel
PXN

PXN V9 Gen 2 Gaming Steering Wheel

R 2 439.00 R 2 999.00

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