UGREEN USB 2.0 to RS-232 Serial Adapter Cable (USB-A Male to DB9 Male)-Black - Ugreen | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Ugreen

UGREEN USB 2.0 to RS-232 Serial Adapter Cable (USB-A Male to DB9 Male)-Black

SKU: CR104-20222
R 249.00
Out of Stock

USB to RS-232 Serial Adapter | USB-A to DB9 Male | PL2303 Chipset | Windows, Mac & Linux Compatible | Up to 1 Mbps Data Transfer Quick Specs

Get Notified When Available

Enter your email and we'll notify you when this item is back in stock.

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

Frequently Bought Together

USB to RS-232 Serial Adapter | USB-A to DB9 Male | PL2303 Chipset | Windows, Mac & Linux Compatible | Up to 1 Mbps Data Transfer

Quick Specs

  • Connect modern USB laptops or PCs to RS-232 serial devices such as routers, modems
  • Built-in PL2303 chipset ensures stable and reliable USB-to-serial communication
  • Supports fast serial data transfer speeds up to 1 Mbps for efficient device configuration.
  • Multi-layer shielding and tinned copper core reduce interference for consistent signal quality
  • Broad compatibility with Windows, macOS, and Linux systems for flexible deployment

Reliable USB to Serial Connectivity

Many professional devices still rely on RS-232 serial communication. This UGREEN USB to RS-232 adapter cable provides a straightforward way to connect modern laptops and desktops to legacy equipment such as industrial machines, routers, modems, barcode scanners, and diagnostic tools. Converting a standard USB port to a DB9 serial interface, it enables dependable communication without requiring specialised hardware upgrades.

Stable Data Transmission with Professional Chipset

At the core of the adapter is the proven PL2303 chipset, designed to deliver stable and accurate signal conversion between USB and serial protocols. With support for data transfer speeds up to 1 Mbps, the adapter ensures efficient communication for configuration, diagnostics, and device management tasks where reliability is essential

Enhanced Signal Protection

The cable is built with a thick tinned copper core and multiple shielding layers, including aluminium foil and metal braided mesh. This design helps reduce electromagnetic interference and maintain clean signal transmission, even in environments with other electronic equipment operating nearby.

Wide Operating System Compatibility

Designed for flexible deployment, the adapter supports a wide range of operating systems, including Windows, macOS, and Linux. Windows systems from Windows 8 onward can automatically install the necessary driver, allowing quick setup without complex configuration.

FEATURES:

  • Connect USB computers to RS-232 serial devices such as routers and industrial equipment.
  • Built-in PL2303 chipset provides stable USB-to-serial conversion
  • Supports serial data transfer speeds up to 1 Mbps for efficient communication
  • Multi-layer shielding protects signals from electromagnetic interference
  • Gold-plated connectors enhance durability and signal reliability
  • Supports remote wake-up and power management functions
  • Compatible with multiple operating systems, including Windows, macOS, and Linux

SPECIFICATIONS:

  • Product Type: USB to RS-232 Serial Adapter Cable
  • Input Connector: USB 2.0 Type-A Male
  • Output Connector: DB9 RS-232 Male
  • Chipset: PL2303
  • Data Transfer Speed: Up to 1 Mbps
  • Connector Finish: Gold-plated
  • Shielding: Aluminium foil and metal braided mesh shielding
  • Core Material: Tinned copper conductor
  • Serial Communication: Automatic handshake protocol support
  • Power Features: Supports remote wake-up and power management
  • Supported Systems: Windows 8.1 / 8 / 7 / Vista / XP / 2000
  • Supported Systems: macOS 10.6 and above
  • Supported Systems: Linux
  • Compatibility Note: Not compatible with cutting plotters or single-chip microcomputers

WHAT’S IN THE BOX:

  • UGREEN USB 2.0 to RS-232 Serial Adapter Cable (USB-A Male to DB9 Male)-Black ×1
  • User Manual ×1

Why UGREEN ?

UGREEN designs connectivity solutions that bridge modern technology with existing equipment. Built with quality components and reliable chipsets, UGREEN adapters help professionals and enthusiasts maintain compatibility across generations of hardware, ensuring dependable performance for everyday technical tasks.

Brand Ugreen
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

GIZZU 240W 20Gbps Type-C 2m Cable
Gizzu

GIZZU 240W 20Gbps Type-C 2m Cable

R 189.00

In Stock

Hot
ORICO Micro USB ChargeSync Cable Silver 1M
Orico

ORICO Micro USB ChargeSync Cable Silver 1M

R 69.00

In Stock

Gizzu USB 3.0 Active Extension Cable 5m - Black
Gizzu

Gizzu USB 3.0 Active Extension Cable 5m - Black

R 259.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!