Giada F108D Intel N100 1xDDR4 3200 Mhz 2xHDMI - Giada | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
Giada

Giada F108D Intel N100 1xDDR4 3200 Mhz 2xHDMI

SKU: F108D-FV-N10040N0G-GIA
R 7 799.00
Only 4 left!
Only 4 left in stock - order soon!

The Giada F108D Signage Player adopts Intel® Alder Lake-N processors, giving you good performance while featuring a low-power range from 6-15W. The book-size embedded PC is specially designed for digital signage and kiosk applications. The slim embedded PC supports rich I/O ports, including dual...

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

Frequently Bought Together

The Giada F108D Signage Player adopts Intel® Alder Lake-N processors, giving you good performance while featuring a low-power range from 6-15W. The book-size embedded PC is specially designed for digital signage and kiosk applications. The slim embedded PC supports rich I/O ports, including dual COM ports, 6 USB Type-A and dual LAN ports. It can also be easily integrated into vending machines, self-service and check-in kiosks. The digital signage player also comes with built-in Intel® UHD Graphics. It has a DP and two HDMI ports, supporting resolutions up to 4096 x 2160@60Hz. With a passive thermal cooling system, the fanless design reduces the failure rate and makes the device run noise-free and dustproof.

FEATURES:

  • Intel® Processor N100
  • DDR4 3200MHz memory support
  • Intel UHD onboard graphics
  • Up to 4k resolution support
  • 1x DP and 2x HDMI output
  • Support for Wi-Fi/Bluetooth module
  • Small form factor design

SPECIFICATION:

  • CPU: Intel® Processor N100 (Fanless)
  • Turbo Frequency: 3.40GHz
  • Chipset: SoC
  • Processing Units: 4 Cores
  • TDP: 6W
  • System Memory: Up to 16 GB, 1 x SO-DIMM DDR4-3200 MHz
  • Storage: 1 x M-Key M.2 (2280) for PCIe3.0 X4 SSD
  • Watchdog Timer: Yes
  • Auto Power On: Yes
  • RTC: Set up independently every day, a week as a cycle
  • Remo on: No
  • Power Requirement: DC-IN, 19 V/2.37 A
  • Construction: Metal
  • Operating System: Windows 11 (64bit) /Linux Ubuntu (64bit)
  • Operating Temperature: 0°C ~45°C (32°F~113°F) @0.7m/s Air Flow
  • Certifications: CE, FCC Class B, UKCA
  • Humidity: 95% @ 45°C (non-condensing
  • Network Controller: 2 x Realtek RTL 8111H Gigabit Ethernet
  • Ethernet Interface: 2 x 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
  • GPU: Intel® UHD 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)
  • 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
  • Product Dimensions: 18.9 x 14.8 x 2.6 cm

WHAT'S IN THE BOX:

  • Giada F108D Alder Lake-N Book Size Signage Player - Black 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

MINISFORUM UN100S Intel N100 Processor Barebone
MINISFORUM

MINISFORUM UN100S Intel N100 Processor Barebone

R 4 899.00

Out of Stock

Giada DN84 Dual-HDMI Rockchip RK3576 Fanless ARM Player
Giada

Giada DN84 Dual-HDMI Rockchip RK3576 Fanless ARM Player

R 6 199.00

Only 1 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!