Giada D613 i3-1315U 2x DDR4 3200Mhz - Giada | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Giada

Giada D613 i3-1315U 2x DDR4 3200Mhz

SKU: D613-1315U40N0G-GIA
R 10 383.41
In Stock

The Giada D613, armed with an Intel Raptor Lake Core i3-1315U processor, introduces a new era of performance and efficiency. The processors feature a combination of high-performance and efficient cores, working in harmony to optimise power consumption without compromising processing power. With...

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

The Giada D613, armed with an Intel Raptor Lake Core i3-1315U processor, introduces a new era of performance and efficiency. The processors feature a combination of high-performance and efficient cores, working in harmony to optimise power consumption without compromising processing power. With support for 4 simultaneous 4K60 displays and hardware-accelerated video encoding and decoding, Giada D613 delivers stunning visuals and an immersive multimedia experience. Intel® Hardware Shield delivers integrated hardware-based PC protection, which includes below-the-OS security, application and data protection, and advanced threat detection. 5G provides game-changing benefits like speeds up to 10 times faster than 4G LTE speeds, a safer alternative to public Wi-Fi, low latency, and massive capacity. The Quectel®-RM50XQ 5G module was certified to be compatible with D613.

FEATURES:

  • Intel® Core™ i3-1315U processor
  • 4 x HDMI, Supporting 4K Display
  • 2 x SO-DIMM DDR4 Memory, Up to 64GB
  • 1 x M-key M.2 (2242/2280) for SSD
  • Supporting RJ45, Wi-Fi 6 (CNVi), and 3G/4G/5G Ethernet Access

SPECIFICATIONS:

  • Processor:
  • CPU: Intel® Core™ i3-1315U processor
  • Frequency: 3.30GHz (Up to 4.50GHz )
  • Cores: 6
  • BIOS: AMI EFI 64 Mbit
  • Memory:
  • Type: DDR4-3200MHz
  • Socket: 2 x SO-DIMM
  • Max Size: 64GB
  • Graphics:
  • GPU: Intel® UHD Graphics
  • Graphic Engine: DirectX 12.1, OpenGL 4.6, OpenCL 3.0, 8K 60fps 12b 4:2:0 HEVC/VP9/SCC
  • HDMI: 4 x HDMI (Max.4096 x 2304 @60 Hz)
  • Network:
  • Controller: 1 x Intel® i219LM Gigabit Ethernet
  • Interface: 1 x RJ45
  • Mobile Network: 1 x B-Key M.2 (3042/3052) for 3G/4G/5G, 1 x SIM Slot
  • 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 USB3.2 Gen2, 2 x USB2.0
  • USB Type-C: 1 x USB Type-C3.2 Gen2
  • Serial Port: 1 x RS232
  • Audio: 1 x 2-in-1 Headset (MIC-IN & AUDIO-OUT)
  • Button: 1 x Power on, 1 x CLR-CMOS
  • Storage:
  • M.2: 1 x M-key M.2 (2242/2280) for NVMe
  • JAHC Tech:
  • WatchDog Timer: 0~255 Second Time Out Support
  • Auto Power On: Power Activated Automatically Start
  • Operation System:
  • Windows: Windows 11 (64bit)
  • Linux: Linux Ubuntu (64bit)
  • Chrome: Chrome OS
  • Power:
  • Power Type: DC-IN
  • Input Voltage: 19 V/4.74 A
  • Environment:
  • Operating Temperature: 0℃ ~ 40℃ ( 32 ℉ ~ 104 ℉ ) at 0.7m/s Air Flow
  • Relative Humidity: 95%@40℃ (non-condensing)
  • Certification: CE, FCC Class B, CCC
  • Mounting: Desk/Wall Mounting and VESA Mounting Kit (JZ183)
  • Construction: Metal
  • Colour: Black
  • Dimensions: 18.9 x 14.8 x 2.6 cm

WHAT’S IN THE BOX:

  • Giada D613 Intel Core i3 High-end Digital Signage Player – Black x1
  • Wi-Fi Antenna x2
  • 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

Giada DN74 ARM RK3399 Fanless Android Signage Player - 32GB
Giada

Giada DN74 ARM RK3399 Fanless Android Signage Player - 32GB

R 5 400.02

Out of Stock

PCBuilder Cube AMD R5-3501 Barebone Mini PC
PCBuilder

PCBuilder Cube AMD R5-3501 Barebone Mini PC

R 5 192.38

Out of Stock

PCBuilder CUBE-N100 Mini PC Barebone
PCBuilder

PCBuilder CUBE-N100 Mini PC Barebone

R 4 361.81

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!