UGREEN Car Charger Fast Charging 30W 2Ports - - | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
-

UGREEN Car Charger Fast Charging 30W 2Ports

SKU: EC305-25845
R 240.14
Available on Backorder

30W fast charging in your vehicle | Dual USB-A and USB-C ports | Built-in thermal and overcharge protection

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

30W fast charging in your vehicle | Dual USB-A and USB-C ports | Built-in thermal and overcharge protection

The UGREEN 30W 2-Port Fast Car Charger is built for drivers who need to keep their devices topped up on the go. With a total output of up to 30W, it delivers fast, reliable charging to smartphones, tablets, and other USB devices — even on short commutes. One USB-A port and one USB-C port let you charge two devices simultaneously, so both driver and passenger can stay powered without sharing. Multiple built-in safety protections, including thermal guard and temperature control, ensure stable power delivery and prevent overheating during every journey. A straightforward, reliable in-car charging solution that works hard every time you turn the key.

Key Features

  • It can charge two devices at once: Dual USB-C and USB-A ports provide convenience and time-saving while traveling by eliminating the need to choose which device to charge first.
  • It allows you to quickly charge devices with power up to 30W and supports Power Delivery and Quick Charge protocols
  • It guarantees full charging safety thanks to the protection system against overcharging, overheating, short circuits, or overvoltage: It protects your devices from potential threats, giving you peace of mind while charging them.
  • It allows you to charge various devices, which makes it an extremely practical solution for every user: It is compatible with a wide range of devices, including Apple, Samsung Galaxy, Google Pixel, Huawei, and LG smartphones, as well as iPad tablets.
  • It takes up very little space and fits stably in the charging slot. Its small size makes it easy to carry and always ready to use.

Charges two devices simultaneously

Don't waste time waiting for one device to charge before plugging in the next. The Ugreen EC305 25845 car charger has two connectors: USB-C and USB-A, which allows you to charge two devices at the same time. This functionality makes traveling even more convenient, especially when you need to charge both your smartphone and tablet.

Express charging with power up to 30W

With a power of up to 30W Power Delivery and Quick Charge protocols, the Ugreen EC305 25845 charger offers express charging. For example, the USB-C port works with iPhone 15 series, allowing you to charge your iPhone 15 smartphone up to 60% in just 30 minutes.

Protection you can count on

The Ugreen EC305 25845 car charger is equipped with various protections: against overcharging, overheating, short circuits, overvoltage,e and fire. You can have peace of mind knowing that your devices are safe and protected from any threats

A charger for every smartphone

Regardless of whether you have an Apple, Samsung Galaxy, Google Pixel, Huawei, or LG smartphone, or maybe an iPad tablet, the Ugreen EC305 25845 car charger will work perfectly. Its versatility and compatibility with many devices make it an extremely practical car accessory.

Perfect fit for your car

The Ugreen EC305 25845 car charger is not only functional but also style and comfort. Its compact design means it takes up very little space and fits stably in the charging slot. Thanks to its small size, it does not interfere with the use of other elements of the car, and at the same time, it is always at hand when you need it.

Features

  • Up to 30W total output for fast, reliable in-car charging
  • Dual-port design: 1x USB-A and 1x USB-C charge two devices at once
  • USB-A output: 5V⎓3A / 9V⎓2A / 12V⎓1.5A / 10V⎓2.25A
  • USB-C output: 5V⎓3A / 9V⎓3A / 12V⎓2.5A
  • Multiple safety protections including thermal guard, temperature control, overcharge, short circuit, and overvoltage protection
  • Compatible with 12–24V vehicle power sockets

Specifications

  • Brand: UGREEN
  • Model Number: EC305-25845
  • Manufacturer Part Number: EC305-25845
  • Colour: Aluminium
  • Warranty: 24 months
  • Product Dimensions (L x W x H): 5.3cm
  • Port Configuration: 1x USB-A, 1x USB Type-C
  • Total Output: 30w

What's in the Box

  • UGREEN 30W Fast Car Charger x1,
  • user manual x 1,

Why UGREEN

UGREEN is a global-leading consumer technology company. Built around four product categories: smart charging and creative products, smart office products, smart audio and visual products, and smart storage products.

Brand -
Colour Aluminium
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

Xiaomi 37W Dual-Port Car Charger - Black
Xiaomi

Xiaomi 37W Dual-Port Car Charger - Black

R 271.28

Out of Stock

New
UGREEN 130W USB-C 3-port Car Charger
-

UGREEN 130W USB-C 3-port Car Charger

R 676.18

Out of Stock

WINX POWER Fast 89W Car Charger
WINX

WINX POWER Fast 89W Car Charger

R 177.84

In Stock

New
UGREEN 63W Type-C + USB A Fast Car Charger
-

UGREEN 63W Type-C + USB A Fast Car Charger

R 364.72

Out of 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!