Giada RN28 with Intel N100 1x DDR4 3200Mhz x6 RJ45 - Giada | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Giada

Giada RN28 with Intel N100 1x DDR4 3200Mhz x6 RJ45

SKU: RN28-N10040N0G-GIA
R 10 249.00
Out of Stock

The Giada RN28 adopts the formidable Intel Alder Lake-N processors, manufactured using an Intel 7 process. The network appliance adopts Processor N100 with 4 Cores and 4 threads. Meanwhile, RN28 features TDP under 15W, which provides superior processing power while minimizing energy...

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

The Giada RN28 adopts the formidable Intel Alder Lake-N processors, manufactured using an Intel 7 process. The network appliance adopts Processor N100 with 4 Cores and 4 threads. Meanwhile, RN28 features TDP under 15W, which provides superior processing power while minimizing energy consumption.

The RN28 model is designed for faster, more flexible connections, the RN28 comes with two Gigabit RJ-45 supporting a BYPASS pair on Lan 1-2, four Gigabit RJ-45 supporting PoE, allowing fast and direct connections. The RN28 also provides wireless flexibility, supporting Wi-Fi 5/6/6E

RN28 is equipped with four RJ45 ports that support Power over Ethernet (PoE) technology. Each of these ports is capable of delivering up to 30W of power. This design combines data connectivity and power delivery, simplifying network setup while providing seamless power to PoE-compatible devices. Featuring fanless design, this network appliance is perfect to be used in noise-sensitive environments.

FEATURES:

  • Intel® Processor N100
  • 1 x HDMI, Supporting 4K
  • 1 x SO-DIMM DDR4 Memory, Up to 16GB
  • 1 x M-key M.2 (2280) for SSD
  • Supporting RJ45, WiFi 6(CNVi), 3G/4G/5G Ethernet Access

SPECIFICATIONS:

  • Processor:
  • CPU: Intel® Processor N100
  • Frequency: 3.40 GHz
  • Cores: 4 Cores
  • Memory:
  • Type: DDR4-3200MHz
  • Socket: 1 x SO-DIMM
  • Max Size: Up to 16 GB
  • Graphics:
  • GPU: Intel® UHD Graphics
  • Graphic Engine: DirectX 12.1, OpenGL 4.6, OpenCL 3.0
  • HDMI: 1 x HDMI (Max.4096 x 2160 @60 Hz)
  • Network:
  • Controller: 6 x Intel i219-LM Gigabit Ethernet
  • Interface: 2 x GbE RJ45, 4 x GbE RJ45 (30 W PoE/LAN)
  • Wi-Fi/BT: 1 x E-Key M.2 (2230) for Wi-Fi/BT, Support Wi-Fi 5, Wi-Fi 6, Wi-Fi 6E (CNVi)
  • I/O:
  • USB: 1 x USB Type-C3.2 Gen1 (5 Gbps), 2 x USB3.2 Gen1 (5 Gbps)
  • Serial Port: 1 x RJ45 Console (RS232)
  • Audio: 1 x Mic-In, 1 x Audio-Out
  • Button: 1 x Power on, 1 x CLR-CMOS
  • Antenna: 2 x Connector for Wi-Fi/BT
  • Storage:
  • Socket 1: 1 x M-Key M.2 (2280) for PCIe X2, for SSD
  • Socket 2: 1 x 2.5" SATAIII, for HDD
  • JAHC Tech:
  • WatchDog Timer: Yes
  • Auto Power On: Yes
  • Operation System:
  • Windows: Windows 11 (64bit)
  • Linux: Linux Ubuntu (64bit)
  • Power:
  • Power Type: DC-IN
  • Input Voltage: DC-IN, 19 V/3.42 A
  • Environment:
  • Operating Temperature: 0°C ~45°C (32°F~113°F) @0.7m/s Air Flow
  • Relative Humidity: 95%@45℃ (non-condensing)
  • Certification: CE, FCC Class B, UKCA
  • Construction: Metal, Grey
  • Colour: Black
  • Dimensions: 20 cm x 15 cm x 4 cm

WHAT’S IN THE BOX:

  • Giada RN28 Intel N100 Embedded Computer – Grey x1
  • WiFi Antenna x1
  • User Manual x1
Brand Giada
Colour -
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

PCBuilder CUBE-N100 Mini PC Barebone
PCBuilder

PCBuilder CUBE-N100 Mini PC Barebone

R 4 199.00

In Stock

PCBuilder CUBE-i5 Intel Mini PC Barebone
PCBuilder

PCBuilder CUBE-i5 Intel Mini PC Barebone

R 7 839.00

In Stock

Giada DF612 i3-1215U 2x DDR4 3200Mhz
Giada

Giada DF612 i3-1215U 2x DDR4 3200Mhz

R 10 499.00

Only 5 left - order soon!

// 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!