WANBO DAVINCI 1 PRO 1080P 650ANSI Android 11 Smart Home Theatre Projector - Silver - WANBO | DirectTech
Secure SSL Payment
Free Shipping over R3,450
14-Day Returns
Expert Support
WANBO

WANBO DAVINCI 1 PRO 1080P 650ANSI Android 11 Smart Home Theatre Projector - Silver

SKU: DAVINCI 1 PRO
R 4 059.00 R 4 999.00
You save R 940.00 (19%)
Out of Stock
You save R 940.00 (19% off)

Transform your home entertainment with the Wanbo DaVinci 1 Pro FHD Bluetooth Portable Projector. Featuring 1080P resolution and 600 ANSI lumens, this projector delivers sharp, vibrant images, perfect for family movie nights and gaming sessions. The auto-focus feature ensures that your picture is...

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

Transform your home entertainment with the Wanbo DaVinci 1 Pro FHD Bluetooth Portable Projector. Featuring 1080P resolution and 600 ANSI lumens, this projector delivers sharp, vibrant images, perfect for family movie nights and gaming sessions. The auto-focus feature ensures that your picture is always clear, enhancing your viewing experience.

The Wanbo DaVinci 1 Pro integrates Google Assistant and Google OS, providing seamless voice control and smart connectivity. With built-in 5G Wi-Fi and Bluetooth support, streaming your favourite content is smooth and lag-free. This makes it easy to access a vast array of apps and services, bringing a world of entertainment to your fingertips.

Designed for convenience, the portable DaVinci 1 Pro can be easily set up in any room. Whether you’re in the living room, bedroom, or backyard, its versatile connectivity options, including HDMI, allow you to connect to a variety of devices effortlessly. Enjoy a cinematic experience at home with this all-in-one entertainment solution.

FEATURES:

  • 1080P Resolution for sharp and clear images.
  • Auto Focus for optimal clarity.
  • Google Assistant for voice control and smart home compatibility.
  • 5G Wi-Fi for seamless streaming.
  • Bluetooth support
  • Compact and lightweight for easy portability.

SPECIFICATIONS:

  • Projection Technology: LCD Full Closed Optical Machine
  • Lens: 3Pcs Shaped Full HD High Transparency Glass + 1PCS Aspherical Full HD High Transparency Glass
  • Light Source: LED
  • Brightness (ANSl): 600
  • Resolution: 1080 P
  • Contrast: 2500:1
  • Projection Ratio: 1.3:1
  • Remote control method: Bluetooth + IR
  • Input Interface: HDMI x1 / USB x2 / 3.5mm x1
  • Keystone Correction: Full Auto - Keystone Correction
  • Scaling Function: Support
  • Proposed Projection Distance (m): 1.2 - 3.6
  • Proposed Projection Screen Size (inch): 40 - 120
  • System OS: Google TV OS
  • Support System: Android 11
  • Memory: 2G + 8G
  • Wi-Fi: 2.4G + 5G
  • Bluetooth: 5.0
  • Focus: Auto-Focus
  • Remote Control: Voice remote control
  • Support Languages: Multi-Language
  • Input Voltage (V): AC 100~240V 50/60Hz
  • Power (W): 85W
  • Speakers: 8W X 2 (DPS Independent Digital Power Amplifier/Bi-Channel Stereo)
  • Standard Accessories: User Manual, Remote control, AC Line
  • Certificate: 3C, SRRC, CE, FCC
  • Intelligent Cooling Control: Yes
  • Heat-Triggered Protection: Yes
  • Front Infrared Receiver: Yes
  • Colour: Silver
  • Product Dimensions: 22.2 x 19.6 x 17.5 cm
  • Product Weight: 2800g

WHAT'S IN THE BOX:

  • Wanbo DaVinci 1 Pro FHD Bluetooth Portable Projector - Silver x1
  • Remote Control x1
  • Power Cable x1
  • User Guide x1
Brand WANBO
Colour Silver
Form Factor -
Interface -
Capacity -
Memory Capacity -
Screen Size -
Resolution -
Refresh Rate -
Cpu -
Cpu Socket -
Warranty 12 Months
0.0
0 reviews
Login to Review

No reviews yet. Be the first to review this product!

Related Products

-17%
WANBO T2 MAX 1080P 450ANSI Android 9.0 Smart Projector - White
WANBO

WANBO T2 MAX 1080P 450ANSI Android 9.0 Smart Projector - White

R 3 309.00 R 3 999.00

Save R 690.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!