WINX POWER Max 65W GaN Wall Charger - WINX | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
WINX

WINX POWER Max 65W GaN Wall Charger

SKU: WX-WC108
R 529.00
In Stock

The WINX POWER Max 65W GaN Wall Charger is engineered for users who demand fast, flexible, and reliable charging across multiple devices. Built using advanced GaN (Gallium Nitride) technology, this powerful Type-C and USB charger delivers high-speed performance in an ultra-compact form - ideal for...

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

Frequently Bought Together

The WINX POWER Max 65W GaN Wall Charger is engineered for users who demand fast, flexible, and reliable charging across multiple devices. Built using advanced GaN (Gallium Nitride) technology, this powerful Type-C and USB charger delivers high-speed performance in an ultra-compact form - ideal for both everyday use and travel.

Delivering up to 65W of total output, this 65W travel charger is capable of charging everything from smartphones and tablets to cameras and even lightweight laptops. With both Type-C and USB options, it functions as a powerful 3-port charger, allowing you to charge three devices simultaneously. Whether you're powering your phone and tablet during a business trip or keeping your camera and earbuds topped up on the go, the WINX POWER Max makes multitasking effortless.

This smart Type-C and USB charger features intelligent power output that automatically adjusts to match the requirements of your connected devices. It ensures each device receives optimal charging speeds while safeguarding against overheating, overcharging, and short-circuiting. You get fast, efficient power with built-in safety - without ever needing to think twice.

Compact and lightweight, this 65W travel charger is designed with mobility in mind. Thanks to GaN technology, it runs cooler and more efficiently than traditional silicon-based chargers, all while fitting easily into your backpack, tech pouch, or pocket. Whether you're commuting, working remotely, or hopping on a flight, it's a smart addition to your daily tech gear.

Perfect as a travel-ready phone charger, the WINX POWER Max keeps all your essential devices powered up with ease. Its triple-port functionality means fewer chargers to carry, fewer outlets needed, and more flexibility when you're charging in tight spaces or shared environments.

Whether you're a busy professional, digital nomad, or tech-savvy traveler, the WINX POWER Max 65W GaN Wall Charger offers the power and convenience of a true Type-C and USB charger - ready to keep pace with your lifestyle. Upgrade to a 3-port charger that’s built for speed, safety, and simplicity.

FEATURES:

  • 65W super-fast charging for smartphones, tablets, and cameras
  • Universal dual Type-C and USB compatibility for everyday devices
  • Simultaneously charges three devices with triple-port output
  • Smart power output that auto-adjusts to your device
  • Overheat & short-circuit protection for safe charging
  • Charging indicator light for at-a-glance charging status
  • Compact & lightweight GaN charger design for travel-friendly power

SPECIFICATIONS:

  • Input: Up to 100-240V~1.5A (50/60Hz)
  • Connection: 2x Type-C (65W) | 1x USB (30W)
  • Output Power: Up to 65W GaN (PD3.0)
  • Output Ratings:
    • Type-C (65W): 5V/3A | 9V/3A | 12V/3A | 15V/3A | 20V/3.25A
    • USB (30W): 5V/3A | 9V/3A | 12V/2.5A | 20V/1.5A
  • Combined output ratings:
    • Type-C (65W) + Type-C (65W): 45W +20W (65W max)
    • Type-C (65W) + USB (30W): 45W + 18W (63W max)
    • Type-C (65W) + USB (30W): 5V=4.8A (24W max)
    • Type-C (65W)+[Type-C (65W)+USB (38W)]: 45W+ [15W max]
  • Protection Features: Smart IC
  • Efficiency Level: VI
  • Operating Temperature: -20°C to 40°C
  • Colour: Black
  • Product Materials: PC
  • Product Dimensions: 9.1 x 5.4 x 3.6 cm
  • Product Weight: 132g

WHAT’S IN THE BOX:

  • WINX POWER Max 65W GaN Wall Charger – Black x1
Brand WINX
Colour Black
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 24 Months
0.0
0 reviews
Login to Review

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

Related Products

Xiaomi 33W Wall Charger
Xiaomi

Xiaomi 33W Wall Charger

R 329.00

In Stock

WINX POWER Ultra 130W Desktop Charger
WINX

WINX POWER Ultra 130W Desktop Charger

R 869.00

Out of Stock

Xiaomi 33W Nano USB Type-C Charger-White
Xiaomi

Xiaomi 33W Nano USB Type-C Charger-White

R 269.00

In Stock

WINX POWER Ultra 140W GaN Desktop Charger
WINX

WINX POWER Ultra 140W GaN Desktop Charger

R 1 099.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!