Giada F109D Intel N150 Twin Lake Book-size Fanless Embedded Computer - Giada | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Giada

Giada F109D Intel N150 Twin Lake Book-size Fanless Embedded Computer

SKU: F109D-V0-N150XX50E6G-GIA
R 7 999.00
Out of Stock

The Fanless Embedded Computer Giada F109D is a compact yet powerful solution engineered to meet the demands of modern industrial and commercial environments. Built around Intel’s next-generation Twin Lake platform, this system delivers enhanced processing capabilities, exceptional 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 Fanless Embedded Computer Giada F109D is a compact yet powerful solution engineered to meet the demands of modern industrial and commercial environments. Built around Intel’s next-generation Twin Lake platform, this system delivers enhanced processing capabilities, exceptional energy efficiency, and long-term operational reliability, making it ideal for deployment in mission-critical applications such as digital signage, kiosks, retail terminals, and smart automation systems.

Designed with a fanless architecture, the Fanless Embedded Computer Giada ensures silent operation and minimal maintenance, significantly reducing the risk of dust ingress and mechanical failure. Its robust aluminium chassis enhances thermal performance and durability, supporting 24/7 operation even in challenging environments.

Equipped with rich I/O connectivity options, including HDMI, DP, COM, and USB ports, the F109D provides seamless integration with a variety of peripheral devices. Additionally, the inclusion of dual LAN ports and optional 4G LTE or Wi-Fi modules enables flexible networking for dynamic usage scenarios.

For businesses seeking reliability, flexibility, and scalability in a slimline footprint, the Fanless Embedded Computer Giada stands as a future-ready embedded computing platform. Its compact design, industrial-grade stability, and cutting-edge Intel technology empower businesses to drive innovation at the edge with confidence and precision.

FEATURES:

  • Powered by an Intel Twin Lake processor for enhanced performance and energy efficiency
  • Fanless design ensures silent operation and improved reliability in industrial environments
  • Ultra-compact metal chassis optimised for space-constrained applications
  • Supports dual independent displays via HDMI and DisplayPort
  • Rich I/O options, including USB, COM, and dual LAN ports for flexible connectivity
  • Expandable with optional Wi-Fi and 4G LTE modules for versatile networking
  • Wide operating temperature range ensures stability in diverse deployment scenarios
  • Ideal for digital signage, retail terminals, kiosks, and edge computing use cases
  • Supports TPM for enhanced security and data protection
  • Long product lifecycle and industrial-grade durability for 24/7 uptime

SPECIFICATIONS:

  • CPU
  • CPU: Intel Processor N150
  • Turbo Frequency: 3.60 GHz
  • Chipset: SoC
  • Processing Units: 4 Cores
    TDP: 6 W
  • System
  • System Memory: 8 GB /16 GB, 1 x SO-DIMM DDR5-4800 MHz
  • Storage:
    • 1 x M-Key M.2 (2280) PCIe3.0 X4 for SSD
    • Optional: 32GB / 64 GB, onboard eMMC
  • Watchdog Timer: Yes
  • Auto Power On: Yes
  • RTC: Set up independently every day, for a week, as a cycle
  • Power Requirement: DC-IN, 19 V/2.37 A
  • Dimensions: 189.6mm x 148.3mm x 31.7mm (7.46” x 5.83” x 1.25”)
  • Construction: Metal, Black
  • Operating System: Windows 11 (64-bit) /Linux Ubuntu (64-bit)
  • Operating Temperature: 0°C ~45°C @0.7m/s Air Flow
  • Certifications: CE, FCC Class B, UKCA
  • Humidity: 95% @ 45°C (non-condensing)
  • Network
  • Network Controller: 2 x Realtek RTL 8111H Gigabit Ethernet
  • Ethernet Interface: 2 x 1 GbE RJ45
  • Wi-Fi/BT:
    • 1 x E-Key M.2 (2230) for Wi-Fi/BT
    • Support Wi-Fi 5, Wi-Fi 6
  • Mobile Network:
    • 1 x B-Key M.2 (3042) for 3G/4G
    • 1 x SIM Slot
  • Display
  • GPU: Intel Graphics
  • Graphic Engine: DirectX 12.1, OpenGL 4.6, OpenCL 3.0
  • Display Interface:
  • 1 x DP (Max.4096 x 2160 @60Hz)
  • 2 x HDMI (Max.4096 x 2160 @60Hz)
  • I/O interface
  • USB
    • 2 x USB3.2 Gen2
    • 4 x USB2.0
  • Serial Port: 2 x 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

WHAT’S IN THE BOX:

  • Giada F109D Intel N150 Twin Lake Book-size Fanless Embedded Computer x1
Brand Giada
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

Giada DN24 Raspberry Pi Compact Signage Player - CM4 Lite
Giada

Giada DN24 Raspberry Pi Compact Signage Player - CM4 Lite

R 4 599.00

Out of Stock

Giada D613 i5-1335U 2x DDR4 3200Mhz
Giada

Giada D613 i5-1335U 2x DDR4 3200Mhz

R 12 899.00

Out of Stock

Giada BQ612 with H610 Barebone W/O CPU RAM and SSD
Giada

Giada BQ612 with H610 Barebone W/O CPU RAM and SSD

R 5 349.00

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!