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

WANBO MOZART 1 PRO 1080P 900ANSI Android 11 Smart Home Theatre Projector - Dark Blue

SKU: MOZART 1 PRO
R 8 109.00 R 9 999.00
You save R 1 890.00 (19%)
Out of Stock
You save R 1 890.00 (19% off)

Experience the brilliance of the Wanbo Mozart 1 Pro, a projector that combines cutting-edge technology with user-friendly features. Enjoy stunning 1080P resolution, powered by Android TV 11.0, and seamless streaming with Google Assistant and Netflix built-in. The high-quality image and sound system...

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

Experience the brilliance of the Wanbo Mozart 1 Pro, a projector that combines cutting-edge technology with user-friendly features. Enjoy stunning 1080P resolution, powered by Android TV 11.0, and seamless streaming with Google Assistant and Netflix built-in. The high-quality image and sound system brings cinema-quality entertainment to your home.

With advanced four-point keystone correction, side projection capabilities, and a compact design, the Mozart 1 Pro fits perfectly into any space. Its dual hurricane fans and copper radiators ensure efficient cooling and quiet operation, letting you immerse in your favourite shows without distraction.

Connectivity is a breeze with support for Bluetooth, Wi-Fi, and multiple system devices like Android, iOS, MacOS, and Windows. Whether you're projecting from your living room, bedroom, or backyard, the Wanbo Mozart 1 Pro delivers a smooth, versatile, and high-quality viewing experience for the entire family.

FEATURES:

  • 1080P Resolution with 4K Support for an immersive viewing experience
  • 900 ANSI Lumens Brightness ensures bright and vibrant images
  • Long Lifespan with over 20,000 hours of light source life
  • Android TV 11.0 provides access to a wide range of apps and content
  • Auto Keystone Correction making setup quick and easy
  • Extensive Connectivity includes multiple ports for versatile connectivity options
  • Portable and sleek, perfect for both home entertainment and on-the-go presentations

SPECIFICATIONS:

  • Projection Technology: LCD Full Closed Optical Machine
  • Lens: 5 Pcs pure glass lens, pixel point to point
  • Light Source: LED
  • Brightness (ANSl): 900
  • Resolution: 1080 P
  • Contrast: 3000:1
  • Projection Ratio: 1.2:1
  • Remote control method: Bluetooth + IR
  • Input Interface: HDMI x1 / USB x1 / 3.5mm x1 / DC x1
  • Keystone Correction: Full Auto - Keystone Correction
  • Scaling Function: Support
  • Proposed Projection Distance (m): 1.35 - 3.3
  • Proposed Projection Screen Size (inch): 55 - 120
  • System OS: Android TV OS
  • Support System: Android 11
  • Memory: 2G + 16G
  • Wi-Fi: 2.4G + 5G
  • Bluetooth: 5.0
  • Focus: Auto-Focus
  • Remote Control: Voice remote control
  • Support Languages: Multi-Language
  • Input Voltage (V): 100V - 240V (±10%), 50-60Hz
  • Power (W): 180W
  • Speakers: 8W X 2 (External sound wave vibrational magnetic levitation Impact)
  • Standard Accessories: User Manual, Adapter, Remote control
  • Certificate: CCC, CE, ROHS
  • Intelligent Cooling Control: Yes
  • Heat-Triggered Protection: Yes
  • Front Infrared Receiver: Yes
  • Colour: Dark Blue
  • Product Dimensions: 17.6 x 20.9 x 22.3 cm
  • Product Weight: 3300g

WHAT’S IN THE BOX:

  • Wanbo Mozart 1 Pro FHD Bluetooth Portable Projector – Dark Blue x1
  • Remote Control x1
  • Power Cable x1
  • User Guide x1
Brand WANBO
Colour Dark Blue
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

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

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

R 4 059.00 R 4 999.00

Save R 940.00

Out of Stock

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