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

Giada DF612 i5-1235U 2x DDR4 3200Mhz

SKU: DF612-1235U40N0G-GIA
R 11 999.00
In Stock

The Giada DF612 model incorporates Intel's 12th-Gen processors, specifically the i5-1235U. These processors offer a significant performance boost of 19 percent compared to the current 11th-gen "Rocket Lake" processors. The DF612 model is equipped with the Intel vPro and TPM 2.0 features, which...

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

Frequently Bought Together

The Giada DF612 model incorporates Intel's 12th-Gen processors, specifically the i5-1235U. These processors offer a significant performance boost of 19 percent compared to the current 11th-gen "Rocket Lake" processors. The DF612 model is equipped with the Intel vPro and TPM 2.0 features, which provide enhanced productivity, remote manageability, and data security.

The DF612 model is compatible with Intel® integrated Iris® Xe GPU, specifically for Core i5 and i7 processors. The device has the capability to deliver a maximum resolution of 8K (7680 x 4320@60 Hz) through its DP1.4 port. It can support two 4K displays (4096 x 2304@60Hz) using its two HDMI2.0 ports. It is an excellent option for large-format displays and kiosks used 24/7.

The fanless design of a passive thermal cooling system reduces the failure rate and ensures that the device operates silently and remains dust-free. The Giada® device is designed to be used in mission-critical applications.

FEATURES:

  • Intel® Core™ i5-1235U 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, WiFi 6(CNVi), 3G/4G/5G Ethernet Access

SPECIFICATIONS:

  • Processor:
  • CPU: Intel® Core™ i5-1235U processor
  • Frequency: 3.30 GHz (Up to 4.40 GHz )
  • Cores: 10
  • 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, 1 x Realtek RTL8111H Gigabit Ethernet
  • Interface: 2 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: 4 x USB3.2 Gen2, 2 x USB2.0
  • USB Type-C: 1 x USB Type-C3.2 Gen2
  • Serial Port: 1 x RS232,  1 x RS232/422/485
  • Audio: 1 x Mic-In, 1 x 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: 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℃ ~ 40℃ ( 32 ℉ ~ 104 ℉ ) at 0.7m/s Air Flow
  • Relative Humidity: 95%@45℃ (non-condensing)
  • Certification: CE, FCC Class B, CCC
  • Mounting: Desk/Wall Mounting and VESA Mounting Kit (JZ183)
  • Construction: Metal
  • Colour: Black
  • Dimensions: 20 x 15 x 4.0 cm

WHAT’S IN THE BOX:

  • Giada DF612 Intel Core i5 Embedded Computer – Grey x1
  • WiFi Antenna x1
  • User Manual x1
Brand Giada
Colour Grey
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 D613-I i3-1315U Raptor Lake Fanless Signage Player
Giada

Giada D613-I i3-1315U Raptor Lake Fanless Signage Player

R 12 499.00

Out of Stock

MINISFORUM UN100S Intel N100 Processor Barebone
MINISFORUM

MINISFORUM UN100S Intel N100 Processor Barebone

R 4 899.00

Out of Stock

PCBuilder CUBE-i3 Intel Mini PC Barebone
PCBuilder

PCBuilder CUBE-i3 Intel Mini PC Barebone

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